.animated {
    opacity: 0;
}


.texto_animado {
    animation-name: fadeInRight;
    animation-duration: 2s;
    /* animation-delay: 0.5s; */
    animation-fill-mode:forwards;
    animation-iteration-count: 1;
    animation-direction: normal;
    /* animation-timing-function: ease-in-out; */
}


/* ANIMACIONES */

@keyframes fadeInRight {
    from {
        /* right: 0; */
        opacity: 0;
    }

    to {
        /* right: 40%; */
        opacity: 1;
    }
}

