/*body {
  background: linear-gradient(300deg, deepskyblue, darkviolet, blue);
  background-size: 180% 180%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: gradient-animation 18s ease infinite;
}
*/
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      2px 2px at 20px 30px,
      rgba(100, 200, 255, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 100, 200, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(100, 255, 180, 0.3), transparent),
    radial-gradient(
      1px 1px at 130px 80px,
      rgba(100, 200, 255, 0.2),
      transparent
    ),
    radial-gradient(
      2px 2px at 160px 30px,
      rgba(255, 100, 200, 0.3),
      transparent
    );
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 20s linear infinite;
  pointer-events: none;
  z-index: -2;
}

@keyframes sparkle {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.gradient-text {
  font-size: 72px;
  background: linear-gradient(300deg, black, blue);
  background-size: 180% 180%;
  animation: gradient-animation 10s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-title {
  text-align: center;
  font-size: 4rem; /* adjust size as needed */
  margin-top: 2rem; /* space from top */
  color: black; /* or whatever looks good on your background */
  font-family: sans-serif;
}
