.typewriter-cursor {
  display: inline-block;
  margin-left: 0.06em;
  animation: typewriter-blink 1s step-end infinite;
}

@keyframes typewriter-blink {
  from,
  to {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}
