.flash {
 animation-name: flash;
  animation-duration: 5.0s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-play-state: running;
}

@keyframes flash {
  from {color: red;}
  to {color: black;}
}
