@keyframes gradient-text {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
  }

  .gradient-text {
  background: linear-gradient(
    225deg,
    rgb(235, 245, 242),
    rgb(3, 200, 150),
    rgb(5, 122, 85),
    rgb(3, 200, 150),
    rgb(235, 245, 242)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-text 6s ease-in-out infinite alternate;
  font-size: 4rem;
  }