*{margin: 0; padding: 0;}

@import url('https://fonts.googleapis.com/css2?family=Jaro:opsz@6..72&family=MuseoModerno:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header {
    width: 96%;
    padding: 2% 2% 3% 2%;
    display: flex;
    justify-content: space-between;
}
nav a{
    list-style: none;
    text-decoration: none;
    width: 1%;
    height: 1%;
    margin: 0;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: black;
    text-align: right;
}
main{
    display: flex;
}
article {
    width: 18%;
    background-color:  rgb(6, 61, 5);
    margin: 0% 2% 2% 2%;
}
main article figure img {
    width: 100%;
}
article p{
    color: white;
    align-self: center;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 17px;
    text-align: center;
    padding-top: 0%;
}
aside{
    width: 15%;
    padding: 0% 10% 0% 0%;
}
aside ul{
    padding-left: 20%;
    padding-top: 10%;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}
h3{
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 23px;
    padding: 0% 0% 0% 5%;
    color:  rgb(6, 61, 5);
    text-align: left;
}
h2{
    font-size: 33px;
    color:  rgb(6, 61, 5);
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    padding-bottom: 3%;
}

section {
    width: 70%;
}

section ol {
    padding-left: 5%;
    padding-right: 5%;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/fresas.webp);
    width: 100%;
    height: 22rem;
    color: white;
    font-size: 20px;
}

/*BLOQUE DE RESPONSIVE*/

.logomobile {
    display: none;
}

@media (max-width:40rem){
    .logomobile {
        display: block;
        margin:auto;
        padding-bottom: 1rem;
        }
    .logodesktop {
        display: none;
    }
    body {
        background-color: rgb(191, 239, 165) ;
    }
    main{
        display: flex;
        flex-direction: column;
    }
    article {
        width: auto;
        margin: 0% 0% 0% 0%;
        padding: 0 0 0 0;
        background-color:  rgb(191, 239, 165) ;
    }
    header {
        display: flex;
        flex-direction: column;
    }
    .menutop {
        align-self: center;
    }
    nav a {
        font-size: 25px;
        margin: 0.5rem;
    }
    aside {
        margin: 0 auto 0 auto;
        margin-top: 2rem;
        padding: 1rem;
        width: 70%;
        background-color: rgb(6, 61, 5);
        color:aliceblue;
        border-radius: 1rem;
    }
    aside ul{
        padding: 0 auto 0 auto;
        padding-top: 2%;
    }
    article p {
        display: none;
        padding: 0 0 0 0;
    }
    h3{
        color: white;
        text-align: center;
        padding-bottom: 1%;
    }
    h2{
        color: white;
        text-align: center;
        font-size: 30px;
    }
    section {
        background-color: rgb(6, 61, 5);
        color:aliceblue;
        margin: 2rem auto 0 auto;
        padding: 1rem;
        width: 80%;
        border-radius: 1rem;
    }
    footer {
        display: flex;
        width: auto;
        height: 10rem;
        margin-top: 2rem;
        background-size: 150%;
    }
}