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

.bg-gradient-animated {
    background: linear-gradient(
  120deg,
  rgba(255, 183, 197, 1),
  rgba(251, 211, 233, 1),
  rgba(204, 255, 244, 1),
  rgba(174, 214, 241, 1),
  rgba(217, 179, 255, 1)
);

background-size: 400% 400%;
animation: gradientMove 8s ease infinite;
}

