.blink {
  animation: kedip 1s infinite;
}

@keyframes kedip {
  0%   {opacity: 1;}
  50%  {opacity: 0;}
  100% {opacity: 1;}
}