html,
body {
  position: relative;
  width: 100%;
  height: 100%;
}
body {
  font-family: 'VT323', monospace;
  font-weight: normal;
  font-size: 20px;
  background: linear-gradient(30deg, #6a00ef, #ff4aab, #000fff);
  background-size: 300% 300%;
  animation: gradient 30s ease infinite;
  margin: 0;
  overflow: hidden;
  background-color: #fcf;
}
body .container {
  position: relative;
  padding: 2em;
  width: 60%;
  margin: auto;
}
body canvas {
  position: absolute;
  top: 0;
  left: 0;
}
body a:before,
body button:before,
body .sentence:before {
  content: '>';
  color: #fff;
  padding-right: 0.2em;
  font-size: 0.9em;
}
body a,
body button {
  font: inherit;
  font-weight: normal;
  text-decoration: none;
  color: #fff;
  z-index: 10;
}
body button {
  border: 0;
  padding: 0;
  text-align: left;
  line-height: normal;
  overflow: visible;
  background: none;
  cursor: pointer;
}
body button:hover {
  height: 20px !important;
}
body ul {
  padding: 0;
  margin: 0;
}
body li {
  list-style-type: none;
}
body a,
body button,
body .blink {
  border-right: 0.3em solid;
  animation: blink-caret 0.5s step-end infinite alternate;
}
body a:hover,
body button:hover,
body .blink:hover {
  border-bottom: 0.05em solid #fff;
  border-right: 0;
  animation: none;
}
body .next-link {
  position: absolute;
  bottom: 0;
  left: calc(100% - 150px);
  font-size: 3em;
  width: 16.5em /* fallback */;
  width: 5ch /* # of chars */;
  margin: 0 20px 20px 0;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.5;
  animation: typing 2s steps(5, end) /* # of steps = # of chars */;
}
body .next-link:hover {
  opacity: 0.8;
}
body .divebar {
  position: relative;
  width: inherit;
  height: inherit;
}
body .divebar canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
body .divebar .video {
  z-index: 10;
}
body .divebar .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1em;
  width: 580px;
  z-index: 100;
  color: #fff;
  background-color: #000;
  cursor: auto;
}
body .divebar .info-blink {
  width: 226px;
  width: 29ch;
}
body .divebar .gif {
  position: relative;
  display: block;
  width: 100%;
  padding: 1em 0;
}
body .divebar .gif img {
  width: 100%;
}
body .divebar .gif-square {
  display: none;
}
body .about {
  width: 60%;
  margin: auto;
}
body .about a {
  animation: none;
  border-right: 0;
  opacity: 0.8;
}
body .about li {
  padding-bottom: 0.8em;
}
@media (max-width: 650px) {
  .info {
    width: 80% !important;
    font-size: 0.9em;
  }
  .gif {
    display: none !important;
  }
  .gif-square {
    display: block !important;
    padding: 1em 0;
  }
  .gif-square img {
    width: 100%;
  }
  div.about {
    width: 80%;
  }
}
@-moz-keyframes typing {
  from {
    width: 0;
  }
}
@-webkit-keyframes typing {
  from {
    width: 0;
  }
}
@-o-keyframes typing {
  from {
    width: 0;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
}
@-moz-keyframes blink-caret {
  50% {
    border-right-color: transparent;
  }
}
@-webkit-keyframes blink-caret {
  50% {
    border-right-color: transparent;
  }
}
@-o-keyframes blink-caret {
  50% {
    border-right-color: transparent;
  }
}
@keyframes blink-caret {
  50% {
    border-right-color: transparent;
  }
}
@-moz-keyframes gradient {
  0% {
    background-position: 48% 0%;
  }
  100% {
    background-position: 53% 100%;
  }
}
@-webkit-keyframes gradient {
  0% {
    background-position: 48% 0%;
  }
  100% {
    background-position: 53% 100%;
  }
}
@-o-keyframes gradient {
  0% {
    background-position: 48% 0%;
  }
  100% {
    background-position: 53% 100%;
  }
}
@keyframes gradient {
  0% {
    background-position: 48% 0%;
  }
  100% {
    background-position: 53% 100%;
  }
}
