.pulsate {
    animation: pulsate 3s ease-out;
    animation-iteration-count: infinite; 
    opacity: 0.8;
}

@keyframes pulsate {
    0% { 
        opacity: 0.8;
    }
    50% { 
        opacity: 1.0;
    }
    100% { 
        opacity: 0.8;
    }
}

.newsflash {
    animation: newsflash 2s ease-in-out;
    animation-iteration-count: infinite; 
    color:white;
    scale:1;
}

@keyframes newsflash {
    0% { 
        rotate: -1deg;
        scale:1;
        color:rgb(203, 203, 203)
    }
    50% {
        rotate: 1deg;
        scale:1.04;
        color:rgb(255, 255, 0)
    }
    100% { 
        rotate: -1deg;
        scale:1;
        color:rgb(203, 203, 203)
    }
}

.warning {
    animation: warning 4s ease-in-out;
    animation-iteration-count: infinite; 
    color:rgb(255, 122, 122);
}

@keyframes warning {
    0% { 
        color:rgb(255, 122, 122)
    }
    50% {
        color:rgb(255, 0, 0)
    }
    100% { 
        color:rgb(255, 122, 122)
    }
}