.body{
    color: aqua;
}
#typewriter p{
    font-family: monospace;
    font-size: 1.5rem;
    margin-inline: auto;
    overflow: hidden;
    /* keeps on 1 line*/ 
    white-space: nowrap;
    /* the cursor */
    border-right: 1px solid;
    animation: typing 3s steps(22) forwards;
}
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}
