* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #05010d;
  color: #fff;
  font-family: "PT Sans", sans-serif;
}

.container {
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container h1 {
  font-size: 64px;
}
.container h1 span:after {
  content: ".";
  animation: progressDots 3s infinite steps(5);
}

.copyright-box {
  position: absolute;
  bottom: 32px;
  border-radius: 10px;
  background: rgba(25, 23, 26, 0.4);
  height: 48px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}
.copyright-box:hover {
  background: rgb(25, 23, 26);
}
.copyright-box .copyright,
.copyright-box .copyright:visited {
  text-decoration: none;
  color: #fff;
  padding: 0 32px;
}

@keyframes progressDots {
  0%, 100% {
    content: "...";
  }
  25%, 75% {
    content: "..";
  }
  50% {
    content: ".";
  }
}
@keyframes gradientEffectOpacity {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes gradientEffectMove {
  0%, 100% {
    transform: translate(-150px) scale(0.8);
  }
  25% {
    transform: translateY(75px) scale(1);
  }
  50% {
    transform: translate(150px) scale(1.2);
  }
  75% {
    transform: translateY(-75px) scale(1);
  }
}
.gradient-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  z-index: -1;
  flex-direction: column-reverse;
  align-items: center;
  overflow: hidden;
}
.gradient-wrapper .gradient-element {
  --opacity-delay: 1s;
  --move-delay: -18s;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 174, 0, 0.7);
  filter: blur(64px);
  animation: gradientEffectOpacity 8s ease-in-out var(--opacity-delay) infinite alternate, gradientEffectMove 20s ease-in-out var(--move-delay) infinite alternate;
  position: absolute;
}
.gradient-wrapper .gradient-element .small {
  width: 200px;
  height: 200px;
}
.gradient-wrapper .gradient-element .large {
  width: 600px;
  height: 600px;
}/*# sourceMappingURL=style.css.map */