Animated Gradient
.gradient-animated {
background: linear-gradient(223deg, #5e51f5, #ff00ff);
background-size: 400% 400%;
animation: GradientAnim 20s ease infinite;
}
@keyframes GradientAnim {
0% {
background-position: 0% 94%;
}
50% {
background-position: 100% 7%;
}
100% {
background-position: 0% 94%;
}
}