.blinking{
    animation:blinkingText 2.0s infinite;
}
.blinking2{
    animation:blinkingText2 2.0s infinite;
}
@keyframes blinkingText{
    0%{     color: black;    }
    
    25%{    color: red; }
    
    50%{    color: red; }
    
    100%{   color: black;    }
}

@keyframes blinkingText2{
    0%{     color: white;    }
    
    25%{    color: yellow; }
    
    50%{    color: yellow; }
    
    100%{   color: white;    }
}
