@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap");
body {
  width: calc(100vw - 16px);
  height: calc(100vh - 16px);
  background: linear-gradient(-45deg, #17b048, #091d6f);
  background-size: 200% 600%;
  -webkit-animation: GradientBackground 100s ease infinite;
          animation: GradientBackground 100s ease infinite;
  position: relative;
}
body#top h1 {
  color: #fff;
  font-family: "Orbitron", sans-serif;
  margin: auto;
  padding: 0;
  font-size: 6.4vw;
  line-height: 1em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.44em;
  width: 8em;
  text-align: center;
}
@media (max-width: 480px) {
  body#top h1 {
    font-size: 9.2vw;
  }
}

@-webkit-keyframes GradientBackground {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes GradientBackground {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}/*# sourceMappingURL=style.css.map */