I'm trying to make a blinking animation for a piece of text that goes from black to white instantly with no fading. Right now it fades to to white then instantly snaps to white
my code:
.flash {
    animation-name:blinkAni;
    animation-duration:1s;
    animation-iteration-count:infinite;
}
@keyframes blinkAni {
        0% {color:black}
        100% {color:white}
}
 
    