
  .blink {
  animation: blinker 0.6s linear infinite;
  
  font-size: 20px;
  font-weight: bold;
  font-family: sans-serif;
  }
  @keyframes blinker {  
  50% { opacity: 0; }
  }
  .blink-one {
  animation: blinker-one 1s linear infinite;
  color: #D30306;
  }
  @keyframes blinker-one {  
  0% { opacity: 0; }
  }
  .blink-two {
  animation: blinker-two 2.0s linear infinite;
  color: #1c87c9;
  }
  @keyframes blinker-two {  
  100% { opacity: 0; }
  }
