@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap");
html {
  min-height: 100vh;
  background: linear-gradient(to top, #004, #002);
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.container {
  position: fixed;
  bottom: 50px;
  width: 100%;
  text-align: center;
}
.container a {
  color: white;
  display: inline-block;
  margin: 25px 15px;
}
.container a:hover {
  color: chartreuse;
}

.logo {
  display: inline-block;
  position: absolute;
  width: 90%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: perspective(1px) translate(-50%, -50%);
  color: chartreuse;
  font-size: 4rem;
  font-family: "Russo One", sans-serif;
  text-shadow: 0 5px 0 #4c9900, 0 5px 15px rgba(127, 255, 0, 0.5);
  white-space: nowrap;
}
.logo span {
  pointer-events: none;
  display: inline-block;
  margin: 0;
}
.logo span:nth-child(1), .logo span:nth-child(2), .logo span:nth-child(3) {
  color: #fa0;
  text-shadow: 0 5px 0 #996600, 0 5px 15px rgba(255, 170, 0, 0.5);
  -webkit-animation: slide 1s ease-in-out infinite;
          animation: slide 1s ease-in-out infinite;
}
.logo span:nth-child(4), .logo span:nth-child(5), .logo span:nth-child(6) {
  -webkit-animation: slide 1s ease-in-out infinite;
          animation: slide 1s ease-in-out infinite;
}
.logo span:nth-child(7), .logo span:nth-child(8) {
  color: rgb(255, 0, 119);
  text-shadow: 0 5px 0 #990047, 0 5px 15px rgba(255, 0, 119, 0.5);
  -webkit-animation: slide 1s ease-in-out infinite;
          animation: slide 1s ease-in-out infinite;
}
.logo span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.logo span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.logo span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.logo span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.logo span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.logo span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.logo span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.logo span:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
@-webkit-keyframes slide {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -25px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes slide {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -25px);
  }
  100% {
    transform: translate(0, 0);
  }
}/*# sourceMappingURL=style.css.map */