/* Fonts */
/* AkayaTelivigala, CherryBombOne, Iansui, LilitaOne, NerkoOne */ @import url('https://fonts.googleapis.com/css2?family=Akaya+Telivigala&family=Cherry+Bomb+One&family=Iansui&family=Lilita+One&family=Nerko+One&display=swap');
/* DarumadropOne, MoiraiOne, Shizuru, ShortStack */ @import url('https://fonts.googleapis.com/css2?family=Darumadrop+One&family=Moirai+One&family=Shizuru&family=Short+Stack&display=swap');
/* GoogleSansCode, Inconsolata */ @import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Inconsolata:wght@200..900&display=swap');
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#main-site-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  margin: auto;
}
#header {
  background: linear-gradient(#D0D0D0, #FFFFFF);
  border: 1px solid #B9B9B9;
  border-radius: 0 12px;
  box-shadow: inset 0 1.5px 2px 0.5px #FFFFFF,
  inset 0 0 4px 0.5px #FFFFFF,
  inset 5px 0 5px -5px #8C8C8C, 
  inset -5px 0 5px -5px #8C8C8C,
  inset 0 -2px 3px -2px #BBBBBB,
  inset 0 1px 4px -2px #BBBBBB,
  0 1px 3px -2px #8C8C8C;
  margin-bottom: 0.7rem;
  padding: 0.7rem 0;
  position: relative;
  text-align: center;
  width: 83%;
}
#header::before {
  background-image: url("images/bubbletransparent.png");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 25px;
  right: 5px;
  top: -24px;
  opacity: 0.74;
  position: absolute;
  width: 25px;
}
#header::after {
  background-image: url("images/bubbletransparent.png");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 37px;
  right: -20px;
  top: 0;
  opacity: 0.8;
  position: absolute;
  width: 37px;
}
#bubble1 {
  background-image: url("images/bubbletransparent.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 45px;
  left: -30px;
  top: 25px;
  opacity: 0.7;
  position: absolute;
  width: 45px;
}
#bubble1::before {
  background-image: url("images/bubbletransparent.png");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 29px;
  left: 13px;
  top: -21px;
  opacity: 0.9;
  position: absolute;
  width: 29px;
}
#bubble1::after {
  background-image: url("images/bubbletransparent.png");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 33px;
  left: 50px;
  top: -7px;
  position: absolute;
  width: 33px;
}
h1 {
  color: #7394b3;
  font-family: "Short Stack";
  font-size: 1.35rem;
  font-weight: normal;
  text-shadow: 0 0.7px 0 #7394b3;
}
#wrapper {
  border: 1px solid #B9B9B9;
  border-radius: 5px;
  box-shadow: inset 0 0 5px #FFFFFF, 
  inset 5px 0 5px -5px #8C8C8C, 
  inset -5px 0 5px -5px #8C8C8C,
  inset 0 -2px 3px -2px #BBBBBB,
  inset 0 1px 4px -2px #BBBBBB,
  0 1px 3px -2px #8C8C8C;
  display: grid;
  gap: 0.5rem;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  padding: 0.5rem;
  width: 83%;
}
#first, #second {
  aspect-ratio: 1 / 0.99;
  border-radius: 5px;
  list-style-position: inside;
  overflow-Y: scroll;
  padding-right: 0.2rem;
}
#first {
  padding-left: 0.2rem;
}
h2 {
  background: linear-gradient(#FFFFFF 25%, #A4C5EA);
  border-radius: 5px 5px 0 0;
  box-shadow: inset 1px 0 4px -2px #697797,
  inset -1px 0 4px -2px #697797;
  color: #6F96CB;
  display: block;
  font-family: "Akaya Telivigala";
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.35rem;
  text-align: center;
  text-shadow: 0 1px #c8f1ff;
}

h2:not(:first-of-type) {
  margin-top: 0.7rem;
}
ul {
  background-color: rgb(224 91 183 / 55%);
  background-image: url("images/poppopbubble.jpg");
  background-size: cover;
  background-blend-mode: lighten;
  border-radius: 0 0 5px 5px;
  display: block;
  padding: 0.3rem 0.5rem;
  position: relative;
}
li {
  list-style: none;
}
li::before {
  background-image: url("images/colourbubble.png");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 12px;
  margin-right: 4px;
  width: 13px;
}
a {
  color: #356498;
  line-height: 1.26rem;
  font-family: "Google Sans Code";
  text-decoration: none;
  text-shadow: 1px 1px 2.3px #FFFFFF;
}
a:visited {
  color: #515151;
}
@media all and (max-width: 700px) {
  h1 {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  a {
    font-size: 0.9rem;
  }
}
@media all and (min-width: 700px) {
  #main-site-wrap {
    width: 78%;
  }
}
@media all and (min-width: 950px) {
  #main-site-wrap {
    width: 60%;
  }
}
@media all and (min-width: 1200px) {
  #main-site-wrap {
    width: 50%;
  }
}
@media all and (min-width: 1500px) {
  #main-site-wrap {
    width: 40%;
  }
}