body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background: #f4f4f4;
    color: #333;
    padding: 20px;
}

.typing {
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid black;
    width: 0;
    animation: typing 3s steps(30, end) forwards;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}