.blink {
  animation: blinker 1.5s step-start infinite;
}

@keyframes blinker {
  30% {
    opacity: 0;
  }
}