.line-1 {
    position: relative;
    top: 50%;  
    width: 100%; /* Set width to cover all text */
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 180%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}

/* Animation */
.anim-typewriter {
    animation: typewriter 4s steps(44) infinite, /* Infinite loop */
               blinkTextCursor 500ms steps(44) infinite; /* Infinite loop */
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; } /* Change width to cover all text */
}

@keyframes blinkTextCursor {
    from { border-right-color: rgba(255,255,255,.75); }
    to { border-right-color: transparent; }
}
