.blink_me {
    animation: blinker 1s linear infinite;
    color:red;
   
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
     
    }
  }