@keyframes gradient-shift {
  0% {
    background-position: 58% 50%;
  }
  25% {
    background-position: 100% 0%;
  }
  75% {
    background-position: 10% 50%;
  }
  to {
    background-position: 58% 50%;
  }
}
html {
  font-size: 10px;
}

body {
  background: #000814;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
body a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
body a:hover {
  color: #FFE580;
}

.wrapper {
  text-align: center;
  padding: 40px;
}
@media (min-width: 768px) {
  .wrapper {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

#logo {
  position: relative;
  width: 232px;
  height: 104px;
  display: inline-block;
}
#logo:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 228px;
  height: 100px;
  background: linear-gradient(104.51deg, #FFE580 4.38%, #FF7571 11.51%, #FF7270 25.06%, #EA5DAD 36.04%, #C2A0FD 52.63%, #9867F0 66.03%, #3BF0E4 79.96%, #B2F4B6 95.62%);
  background-position: 25% 0%;
  background-size: 250%;
  animation: gradient-shift 30s ease infinite;
  clip-path: url(#logoClip);
}
#logo h1 {
  background: linear-gradient(104.51deg, #FFE580 4.38%, #FF7571 11.51%, #FF7270 25.06%, #EA5DAD 36.04%, #C2A0FD 52.63%, #9867F0 66.03%, #3BF0E4 79.96%, #B2F4B6 95.62%);
  background-position: 58% 50%;
  background-size: 500%;
  animation: gradient-shift 25s ease infinite;
  position: absolute;
  top: 0;
  left: 0;
  width: 232px;
  height: 104px;
  display: inline-block;
  clip-path: url(#shadowClip);
  margin: 0;
  transform: translate3d(0, 0, 0);
  font-size: 0;
}