.blink {
    animation: blink 2s infinite steps(1);
}

@keyframes blink {
    50% {
        color: transparent;
    }
}