/* Define the animation keyframes */
@keyframes colorChange {
    0% { color: red; }
    20% { color: orange; }
    40% { color: yellow; }
    60% { color: green; }
    80% { color: blue; }
    100% { color: purple; }
}

/* Apply the animation to the .color-change-text element */
.color-change-text {
    display: inline-block;
    font-size: 24px;
    animation: colorChange 6s infinite;
}