@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&family=Lilita+One&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    background: url("../leaves.png");
}

.contenedor {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: white;
    border-style: none none solid none;
    border-color: rgb(216, 216, 216);
    border-width: 3px;
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 30%;
}
.contenedor h1 {
        font-family: "Pacifico", cursive;
        font-weight: 400;
        font-style: normal;
        color: rgb(28, 138, 55);
        margin: 5px 30px 30px 100px;

}
.contenedor ul {
    list-style: none;
    display: flex;
    flex-direction: row;
}
.contenedor ul li {
    margin: 10px 50px 10px 20px;
    padding: 5px;
    font-family: "Catamaran", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    border-style: none groove none none;
}
.contenedor ul li a {
    color: black;
    text-decoration: none;
}
.contenedor ul li a :hover {
    background: rgb(192, 233, 132);
}

.encabezado {
    display: flex;
    justify-content: center;
}

.encabezado h1 {
    font-family: "Merriweather Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-size: 30px;
    padding: 20px;
    color: rgb(36, 80, 43);
}

.contenedor2 {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 5px 30px 5px 30px;
    border-style: groove none groove none; 
    border-color: rgb(209, 208, 208);
    border-radius: 3%;
    box-shadow: 5px 10px gray;
}
.titulo {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.contenido  {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px;
}
.contenedor2 h5 {
    font-family: "Merriweather Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-size: 20px;
    margin: 15px;
    color: rgb(214, 28, 28);
}
.mapa {
    padding: 15px;
}

.info {
    padding: 15px;
    border-left: solid 1px grey;
    font-family: "Catamaran", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-size: 20px;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
    padding-top: 30px;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    font-family: "Catamaran", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

footer p {
    font-size: 25px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a :hover{
    background: white;
    color: black;
}
.facebook {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.facebook img {
    width: 20px;
    height: 20px;
    margin: 0 20px 0 0;
}

.instagram {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
} 
.instagram img {
    width: 20px;
    height: 20px;
    margin: 0 20px 0 0;
}
/* Responsive */
@media screen and (max-width:700px){
    .contenedor {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: sticky;
        overflow: hidden;
    }
    .contenedor  h1{
        width: 100%;
        max-width: 300px;
        padding: 30px;
        margin: auto;
    }
    .contenedor .lista {
        width: 100%;
    }
    .contenedor ul li {
        margin: auto;
        border-style: groove none none none;
    }
    .contenido {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: auto;
    }
    .mapa iframe {
        width: 100%;
        max-width: 300px;
        display: flex;
        margin: auto;
    }
    .info {
        border-style: none;
    }
    
    footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    footer div {
        margin: 10px 10%;
    
    }
}