/* ESTILO PARA EL FONDO DE FERIA ASUNCION */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('../img/fondo-mobile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center
}

@media screen and (min-width: 1280px) {
    body {
        background-image: url('../img/fondo-desktop.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}


