@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');


body{
    background: #ffffff; font-family: "Roboto", sans-serif;
}

header{
    display: grid;
    grid-template-columns: auto auto;
    margin: 1rem 0;
}

.menu{
    display: flex;
    justify-content: right;
    align-items: right;
}

.menu ul {
    display: flex;
}

.menu ul li {
    list-style: none;
}

.menu ul li a {
    color: #000000; 
    list-style: none;
    padding-inline: 0.5rem;
    text-decoration: none;
}

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



figure{
    display: grid;
    grid-template-columns: 25% 75%;    
    background: rgb(2, 95, 2);
    align-content: center;
    justify-content: center;
}


figcaption {
    width: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: right;
}

aside {
    margin-top: 6rem;
    justify-content: right;
} 

/* Pie de página */

section{
    display: grid;
    grid-template-columns: 80% 20%;
    }

.h2 {
    color: rgb #00450e;
    padding-left: 2rem;
}

.maicenita {
    width: 15rem;
    height: 10rem;
}

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




