:root {
  --primary: black;
  --secondary: white;
  --border: white;
  --link: pink;
}

body {
  background-image: url("/ocean/side pages/lounge chat/sparkle-bg.gif");
  background-repeat: repeat;
  background-color: black;
  color: white;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: 'Motherish';
}
@font-face {
  font-family: 'Cherry bomb';
  src: url(/fonts/Cherrybomb.ttf);
}
@font-face {
  font-family: 'Yoster Island';
  src: url(/fonts/e_yoster.otf);
}
@font-face {
  font-family: 'Motherish';
  src: url(/fonts/motherish.otf);
}
h1 {
  font-size: 1.875em;
  text-align: center;
}
#title {
  text-decoration: underline;
  width: 90%;
}
#date {
  font-size: 1.25em;
  color: grey;
}
p {
  font-size: 1.125em;
  text-align: center;
  width: 99%;
}
aside {
  float: left;
  padding-left: 1.875em;
  margin-left: 0.938em;
  padding-right: 1.875em;
  text-align: center;  
}
aside a {
  color: white;
}
a {
  color: lightpink;
  text-decoration: none;
}
img {
  user-select: none;
}
#gallery {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
}
#gallery div {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
#gallery img {
  border: 2px solid;
  border-radius: 5%;
  width: 15%;
  margin: 1%;
  cursor: pointer;
  transition: box-shadow 1s, width 1s;
}
#gallery img:hover {
  box-shadow: 0 0 10px 5px rgba(255, 174, 201, 0.5);
  width: 16%;
}
#leftArrow {
  position: fixed;
  left: 4%;
  top: 45%;
  display: none;
  animation: fadeIn 0.2s linear;
  cursor: pointer;
  z-index: 12;
}
#rightArrow {
  position: fixed;
  right: 4%;
  top: 45%;
  transform: scaleX(-1);
  display: none;
  animation: fadeIn 0.2s linear;
  cursor: pointer;
  z-index: 12;
}
#overlay {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 11;
}
#popUp {
  z-index: 1;
  position: fixed;
  top: 7.5%;
  left: 6.25%;
  width: 75%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 12;
}
#popUp * {
  margin: 0.25%;
  text-shadow: 2px 2px 2px black;
}
#spoilerwarning {
  display: none;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1%;
}
button {
  padding: 1%;
  text-align: center;
  background-color: white;
  color: black;
  border: 4px solid black;
  margin: 0;
  font-size: 1.25em;
}
button:hover {
  background-color: pink;
  color: purple;
  border-color: purple;
}
button:active {
  background-color: purple;
  color: pink;
  border-color: pink;
}
div {
  text-align: center;
  line-height: 160%;
  background: none;
  color: white;
  width: 75%;        
  padding-left: 5%;
  padding-right: 5%;
  display: none;
  margin: auto;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.spoiler {
  filter: brightness(0%);
}
@keyframes unspoiler {
  from {
    filter: brightness(0%);
  }
  to {
    filter: brightness(100%);
  }
}
span {
  color: grey;
  font-size: 0.9em;
}
cite {
  font-style: normal;
}
@media only screen and (orientation: portrait) {
  #gallery {
    width: 95%;
  }
  #gallery img {
    width: 30%;
    margin: 1%;
  }
  #gallery img:hover {
    width: 30%;
  }
  #leftArrow {
    top: 2%;
    width: 18%;
  }
  #rightArrow {
    top: 2%;
    width: 18%;
  }
}