@keyframes flash {
  0%, 100% { color: #FF1493; }
  50% { color: #FFFF00; }
}

.flashing {
  animation: flash 1s infinite;
  font-size: 4em;
}
