@charset "utf-8";
/* CSS Document */

/* encabezado */

.animate-opacity {
    animation: opac 0.8s;
}

@keyframes opac {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.logo1 {
    max-width: 50%;
    height: auto;
}

.Frontera {
    max-width: 100%;
    height: auto;
}

.animate-top {
    position: relative;
    animation: animatetop 0.4s;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

/* pagina */