@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.ansi-blink {
  animation: blink 1s step-start infinite;
  color: #39ff14;
}
