@font-face {
  font-family: "vga8";
  src: url("../fonts/vga8.woff2");
}

body {
  background-color: black;
  color: silver;
  font-family: "vga8";
  font-size: 1rem;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes eye {
  0% {
    stroke-dashoffset: 23;
    stroke-opacity: 0;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-opacity: 1;
  }
}

@keyframes appear {
  0% {
    transform: translateY(0.5rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes dimmer {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.1;
  }
}

div#logo {
  display: flex;
  justify-content: center;
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
}

div#logo svg {
  max-height: 100dvh;
}

path#eye {
  stroke-dasharray: 23;
  animation: 1s ease-in-out 0s 1 eye;
}

#logo g {
  opacity: 1;
  animation: 1s ease-in-out 0s 1 forwards dimmer;
}

.top {
  display: flex;
  justify-content: center;
  background: linear-gradient(0deg, transparent, black 30%);
  opacity: 0;
  padding: 2rem 0 2rem 0;
}

.fixed {
  z-index: 1;
  position: fixed;
  width: 100vw;
  text-wrap: nowrap;
}

.bottom {
  background: linear-gradient(0deg, black, transparent 100%);
  opacity: 0;
  padding: 2rem 0 2rem 0;
  bottom: 0;
}

.appear {
  animation: 1s ease-in-out 0s 1 forwards appear;
}

.container {
  position: relative;
  top: 6rem;
  padding-bottom: 2rem;
}

.content {
  margin: 0rem 2rem 0rem 2rem;
}

.single {
  font-size: 2rem;
}

.double {
  font-size: 3rem;
}

.crab {
  color: white;
  text-shadow: -1px -1px 0 cyan, 1px 1px 0 magenta; // , 0 2px 0 black;
}

.page {
  max-height: 100vh;
}