.animated-text {
font-size: 16px;
font-family: Arial, sans-serif;
background-image: linear-gradient(
to right,
red,
orange,
yellow,
green,
cyan,
blue,
violet
);
background-size: 400% 100%;
-webkit-background-clip: text;
color: transparent;
animation: colorMove 5s linear infinite, bounce 1.5s ease-in-out infinite;
}
@keyframes colorMove {
0% {
background-position: 0% 50%;
}
100% {
background-position: 100% 50%;
}
}
@keyframes bounc