
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');


.animacion_head {
    
    animation: fadeInDown;
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

.anima_text_head {
    
    animation: fadeInUp;
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}




.aparicion {
    animation: fadeInUp;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    transform: none;

}





.boton {
    position: relative;
    color: white;
    
    background: #baa684;
    border: 0.5px solid white;
    
    transition: background 0.5s ease, color 0.5s ease;
    z-index: 1;
    overflow: hidden;
    
}

.boton:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgb(246, 239, 223);
    
    transition: width 0.9s ease;
    z-index: -1;
    
}

.boton:hover:before {
    width: 100%;
    
}

.boton:hover {
    color: black;
    
    
}





a {
    color: #1a73e8;
    
    text-decoration: none;
}

a:hover {
    color: #e91e63;
    
}

