﻿.blink {
    animation-name: blinkingText;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
}

@keyframes blinkingText {
    from {
        color: transparent;
    }

    to {
        color: red;
    }
}