.typing-animation::after {
  content: "|";
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #000; /* Replace this with the color of your cursor */
  }
}
