*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap');

body { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif}

header {
    display: grid;
    grid-template-columns: 90% 10%;
}

header img {
    justify-content: left;
    padding-top: 1rem;
    margin: 2rem;
}

header ul {
    justify-content: right;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

figure img {
    width: 15rem;
}
section {display: grid;
    grid-template-columns: 20% 60% 20%;
margin: 2rem;
padding-top: 2rem;}

section figure{
    display: grid;
    background-color: rgb(1, 71, 1);
    align-self: center;
    width: 15rem;
}

    figure figcaption{
        color: white;
        text-align: center;
        align-self: flex-end;
        padding: 2rem 0 1rem 0;
    }

h1 {
    font-size: 2rem;
    color: rgb(1, 71, 1);
    padding-bottom: 1rem;
}

h2 {
    font-size: 1,5rem;
    color: rgb(1, 71, 1) ;
    padding-bottom: 1rem;
}

    footer {
        background: url(../img2/fresas.webp); 
        width: 100%;
    height: 10rem;
    object-fit: cover; 
    object-position: top;
    }

footer p {
    text-align: center;
    color: white;
    padding-top: 5rem;
}

