.text-style {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    display: block;
    text-align: center;
}

/* CSS Smooth Blink Animation */
.blink-smooth {
    animation: blink_smooth 1s infinite;
}

@keyframes blink_smooth {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}