body {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  min-height: 100vh;
  background-image: url("static/background.gif");
  background-size: 110%;
  background-color: #000024;
  background-repeat: no-repeat;
  background-position: 20% 45%;
  margin: 0;
}
@media (prefers-reduced-motion) {
  body {
    background-image: url("static/background.png");
  }
}
@media (max-width: 600px) {
  body {
    background-position: 20% 100%;
  }
}
@font-face {
  font-family: "fallback-font";
  src: local("monospace");
  advance-override: 100%;
  ascent-override: 97.7%;
  descent-override: -20.5%;
  line-gap-override: 6.8%;
}
main {
  font-family: "Iosevka Web", "fallback-font";
  max-width: 600px;
  background-color: #ffe8f3;
  opacity: 80%;
  padding: 20px;
  margin: 0px;
  border-radius: 10px;
  margin: 15px;
}
h1,
h2 {
  font-weight: 700;
  margin: 0;
  margin-bottom: 10px;
}
h2 {
  margin-top: 20px;
}
p {
  font-size: 14pt;
  margin: 0;
}
a,
a:visited {
  color: #0500ff;
}
#crt-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("static/lines.jpeg");
  background-size: 7px auto;
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0.4;
  animation: moveDownAnimation 30s linear infinite;
}
@media (prefers-reduced-motion) {
  #crt-lines {
    animation: none;
  }
}
@keyframes moveDownAnimation {
  100% {
    background-position-y: 100%;
  }
}
.back {
  display: inline-block;
  padding-top: 10px;
  font-weight: 600;
  text-decoration: none;
}
.back:before {
  content: "↵ ";
}
.discord {
  font-weight: 500;
}
#vignette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("static/vignette.png");
  background-size: 100% 100%;
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 1;
}
