.typewriter-cont{display: inline-block;}


.hidden-typewriter {
    height: auto;
    font-size: 18px;
    border-right: 3px solid;
    width: 35ch; /* Set to the number of characters in your text */
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation:
        typing 3s steps(35),
        cursor .4s step-end infinite alternate;
}

@keyframes cursor {
    50% {   border-color: transparent;}
}

@keyframes typing {
    from {  width: 0  }
}
