#press {
  animation : blink 3s linear infinite;
  color:white;
}

@keyframes blink {
  50% {
    opacity: 0;
    }
}


