.blink{
    animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
    0%{     color:#fff000;    }
    49%{    color:#fff000; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color:#fff000;    }
}
/* Stylesheet: blinker Modified On 2020-01-23 10:18:55 */
