/* #particles-js {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #d22929;
} */
/* .container {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  user-select: none;
  transform: translate(-50%, -50%);
  width: max-content;

  text-align: center;
}
.container h1 {
  font-size: 150px;
  font-weight: lighter;
  font-family: "Ogg";
  text-transform: capitalize;
  color: #e0e0e0;
  line-height: 70%;
}

.container h1 span {
  font-size: 30px;
  font-family: "Neutral Face";
  text-transform: uppercase;
} */

.animated-gradient {
  background: linear-gradient(135deg, #030106, #090115, #1a0433, #2a0555);

  background-size: 400% 400%;
  animation: gradientMove 22s ease-in-out infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
