.gradient-text {
    background-image: linear-gradient(white, #ffd32d);
    color: transparent;
    background-clip: text;
    animation: gradient-animation 18s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}