@layer utilities {
    @keyframes typing {
      0% { width: 0ch; }
      50% { width: 38ch; }
      100% { width: 0ch; }
    }
    @keyframes blink {
      0%, 100% { border-color: transparent; }
      50% { border-color: white; }
    }
    .animate-typing {
      animation: typing 6s steps(38) infinite;
    }
    .blink-cursor {
      animation: blink 0.7s step-end infinite;
    }
  }