@import url("./encabezado.css");
@import url("./banner.css");
@import url("./fotos-carrusel.css");
@import url("./carrusel.css");
@import url("./informacion.css");
@import url("./pie-de-pagina.css");
@import url("./contacto.css");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-image: url("../img/fondo.png");
    background-size: 30vw;
    background-attachment: fixed;
}


ul {
    list-style: none;
}

a {
    color: unset;
    cursor: pointer;
    text-decoration: none;
}

section {
    padding: 0px 300px;
}

h1{
    font-size: 50px;
    font-weight: 700;
}



.ex-section-title {
    text-align: center;
    color: #000000;
    font-family: Roboto, sans-serif;
    font-size: 5em;
    text-transform: uppercase;
    margin-top:120px;
}

.reverse-flexrow {
    flex-direction: row-reverse;
}


@media (max-width: 700px) { 
    body{
        text-align: center;
        background-size: cover;
    }

    h1{
        font-size: 2em;
    }
    section{
        padding: 5px 10px;
    }
}
a{background: }