/* Define the blinking animation */
@keyframes blinking {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Apply the animation to a class */
.blinking-text {
    animation: blinking 1s infinite; /* 1s duration, infinite loop */
}

