body {
    background: #111;
    color: #00ffcc;
    font-family: monospace;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
  }
  
  .typing-text {
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #00ffcc;
    animation: typing 4s steps(40, end) forwards, blink 0.7s step-end infinite;
  }
  
  @keyframes typing {
    to {
      width: 100%;
    }
  }
  
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }
  