
@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;
    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);
}
.contenido {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 40px 30px 40px 30px;
}

.contenido img {
    border: solid 3px gray;
    opacity: 1;
}

.contenido img:hover {
    border: solid 3px green;
    opacity: 0.5;
    cursor: pointer;
}
/* productos ordenados */
.linea1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 5px 30px 40px 30px;
}
.linea2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 5px 30px 40px 30px;
}
.linea3 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 5px 30px 40px 30px;
}
.linea4 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 5px 30px 40px 30px;
}
.caja {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 330px;
    height: 400px;
    margin: 10px 30px 10px 30px;
    border-style: groove none groove none;
    border-color: rgb(209, 208, 208);
    border-radius: 3%;
    box-shadow: 5px 10px gray;
}
.caja h3{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Merriweather Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    padding: 20px;
    color: rgb(60, 133, 60);
}

.caja p {
    padding: 20px;
    font-family: "Merriweather Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-size: 24px;
}
.contenido div img {
    display: flex;
    align-items: center;
    width: 200px;
    height: 200px;
    padding: 5px;
    border-radius: 30%;
}
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:750px){
    .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;
    }
    .linea1 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: auto;
    }
    .linea2 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: auto;
    }
    .linea3 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: auto;
    }
    .linea4 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: auto;
    }


    footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
}

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