/* this is a smidge of CSS to make the blink tag work on modern Firefox */

blink {
  animation: blinkit 1s steps(5, start) infinite;
}

@keyframes blinkit {
  to {
    visibility: hidden;
  }
}
