﻿
@-webkit-keyframes color_change {
 from

{
    color: white;
}

to {
    color:#af151b;
}

}

@-moz-keyframes color_change {
    from {
        color: white;
    }

    to {
        color: #af151b;
    }
}

@-ms-keyframes color_change {
    from {
        color: white;
    }

    to {
        color: #af151b;
    }
}

@-o-keyframes color_change {
    from {
        color: white;
    }

    to {
        color: #af151b;
    }
}

@keyframes color_change {
    from {
        color: white;
    }

    to {
        color: #af151b;
    }
}



.textorespirando {
    -webkit-animation: color_change 1.5s infinite alternate;
    -moz-animation: color_change 1.5s infinite alternate;
    -ms-animation: color_change 1.5s infinite alternate;
    -o-animation: color_change 1.5s infinite alternate;
    animation: color_change 1.5s infinite alternate;
}