
@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: fixed;
    top: 0;
    z-index: 10;
    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);
}

.contenedor2 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 80px;
    z-index: 9;
}
.caracterisitcas {
    display: flex;
    flex-direction: column;
    background-color: white;
    margin: 30px;
    padding: 30px;
    border: solid 3px rgb(209, 208, 208);
}
.caracterisitcas h5 {
    font-family: "Merriweather Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    margin: 20px;
    color: rgb(60, 133, 60);
}
.caracterisitcas p {
    font-family: "Catamaran", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-size: 20px;
}

/* Aqui irá lo del carrusel de fotos */

.carousel {
    position: relative;
    max-width: 400px;
    margin: 30px;
    overflow: hidden;
    z-index: 9;
}


.carousel-images {
    display: flex;
    padding: 20px;
    transition: transform 0.5s ease-in-out;
    background-color: white;
    border-top: solid 3px rgb(209, 208, 208);
    border-bottom: solid 3px rgb(209, 208, 208);
    
}

.carousel-images img {
    padding: 25px;
    width: 100%;
    flex: 0 0 100%;
    /* display: inline-block;*/
}

button {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
    transform: translateY(-50%);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* Aqui va el pie de pagina*/
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;
    }
    .contenedor2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: auto;
    }
    .carousel {
        margin: auto;
        margin-top: 10%;
    }
    footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

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