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

.terminal-cursor {
  animation: blink 1s infinite;
}
