@keyframes color-flash {
    0% { color: blue; }
    33.33% { color: red; }
    66.66% { color: black; }
    100% { color: blue; }
}


.flashing-text {
    animation: color-flash 3s infinite; /* Use your animation name, duration, and iteration count */
}
