#typing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px; /* Adjust as necessary */
    min-height: 35px; /* Add this */
    padding: 20px 0;
    width: 100%;
    font-family: 'Roboto Mono', monospace;
    text-align: center;
}



#typing {
    color: white;
    font-weight: 900;
    font-size: 15px;
    white-space: pre;
    padding-right: 5px;
    border-right: 0.4em solid white;
    animation: cursor 1s steps(1, end) infinite;
}

#typing.invisible {
    border-right: .4em solid transparent;
}

@keyframes cursor {
    0%, 50% {border-color: white;}
    50.01%, 100% {border-color: transparent;}
}
