body{
    background-color: rgb(48, 47, 47);
}

.typewritter{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}
.typewritter p {
    font-family: monospace;
    font-size: 1.5rem;
    color: white;
    margin-inline: auto;
    overflow: hidden;
    white-space: nowrap;
    border-right: 1px solid whitesmoke;
    animation: typing 3s steps(22) forwards, blink 1s step-end infinite;
}
@keyframes typing {
    from{
        width: 0;
    }
    to{
        width: 100%;
    }
}
@keyframes blink {
    50%{
        border-color: transparent;
    }

}