/*
  File: blink.css
  Description: Contains the CSS animation for blinking text.
*/

.blink {
  /* Apply the animation named 'blinker', run for 1 second, linearly, infinitely */
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  /* At the 50% mark of the animation cycle, set opacity to 0 (invisible) */
  50% {
    opacity: 0;
  }
}