*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.contenedor{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 200px;
    margin:500px;
    background: #ffff99;
    color: #333;
}
h2{
    color: #f00;
    font-size: 24px;
    text-transform: uppercase;
    /*-webkit-text-stroke: 0.3vw #f00; si necesito con borde el texto  */
}
h2::before{
 
    width: 0;
    height: auto;
    color: #37b9f1;
    overflow: hidden;
    position: absolute;
    content: attr(data-text);
    border-right: 2px solid #000; /*color de la linea*/
    /* -webkit-text-stroke: 1px #2ecc71; si necesito con borde el texto */
    animation: animate 7s linear infinite; /*velocidad de la linea*/
}
@keyframes animate {
    0%,
    10%,
    100%{
        width: 0;
    }
    70%,
    6%{
        width:100px;
    }
}