/* Add here all your css styles (customizations) */

.blinker {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    color:#FF0000;
  }
}
@-webkit-keyframes blink-animation {
  to {
    color:#555555;
  }
}