/* Typing animation */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink {
  50% { border-color: transparent; }
}

.animate-typing {
  width: 0;
  animation: typing 3s steps(25, end) forwards, blink 0.75s step-end infinite;
}
