 .typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #3b82f6;
    animation: typing 3.5s steps(40, end), blink .75s step-end infinite;
    max-width: 100%;
  }

  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }

  @keyframes blink {
    50% { border-color: transparent }
  }