/* this css code makes the <blink> tag work. */
blink {
  animation: blinker 3s linear infinite;
}
  @keyframes blinker {  
  50% { opacity: 0; }
}

