.blinking-text {
    animation: blinker 1s linear infinite; /* Animation name, duration, timing function, and iteration count */
    color: red; /* Example color */
    font-size: 24px; /* Example font size */
}

@keyframes blinker {
    50% {
        opacity: 0; /* At 50% of the animation, the text will be invisible */
    }
}
