@import url('https://fonts.googleapis.com/css2?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');
*{ margin: 0; padding: 0; box-sizing: border-box;}

.contenedor{max-width: 75rem; margin: 0 auto 0 auto;}
body{background: #ffffff; font-family: "Roboto", sans-serif;}

header{margin: 1rem 0;}

.menu{
    display: flex;
    a{color: #000000; text-decoration: none; padding-inline: 0.5rem;}
    justify-content: right;
    align-items: right;
}

h1{color: rgb(2, 95, 2);padding: 2rem 0 2rem 0;}

section{
    display: grid;
    grid-template-columns: 70% 30%;
    }
figure{
    display: grid;
    grid-template-columns: 50% 50%;    
    background: rgb(2, 95, 2);
    align-content: center;
    justify-content: center;
    img{width: 65%;}
}
figure figcaption{
    display: block;
    width: 50%;
    color: #ffffff;
    text-align: center;
    align-self: center;
}

aside{
    h2{color: rgb(2, 95, 2);padding-left: 2rem;}
    ul{padding-left: 3rem;}
}

.receta{
    padding: 2rem 0 3rem 1rem;
}

footer{
    width: 100%;
    min-height: 10rem;
    background: url(../img/fresas.webp);
    background-size: cover;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    padding: 5rem;
}