.line-1{
    position: relative;
    top: 50%;
    width: 24em;
    margin: 0 auto;
    border-right: 2px solid rgba(255, 255, 255, 0);
    font-family: 'Russo One';
    font-weight: 400;
    /*font-size: 100%;*/
    color: rgba(255, 255, 255, 0.65);
    text-shadow: 0 0 10px rgba(50, 0, 126, 0.3);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);
}

/* Animation */
.anim-typewriter{
    animation: typewriter 2s steps(44) 1s 1 normal both,
    blinkTextCursor 1s steps(44) infinite normal;
    animation-delay: 2s;
}
@keyframes typewriter{
    from{width: 0;}
    to{width: 17em;}
}
@keyframes blinkTextCursor{
    from{border-right-color: rgba(255,255,255,.75);}
    to{border-right-color: transparent;}
}
