.typing-cursor::after {
  content: '|';
  animation: blink 0.5s steps(1) infinite;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}