@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 {
    font-family: "Roboto", sans-serif;
    transition: all 2s;
}

header {
    display: grid;
    grid-template-columns: auto auto;
}
header nav {
    align-self:center;
}

header nav ul {
    text-align: right;
    padding-right: 1rem;
}
header nav ul li {
    display: inline-block;
}
header nav ul li a {
    color: black;
    text-decoration: none;
}

header img {
    padding: 2rem 2rem 3rem;
}

figure {
    display: grid;
    grid-template-columns: 100%;
    align-content: center;
    font-size: 16px;
    font-weight: 300;
}
figure img {
    width: 100%;
}

figure figcaption {
    background-color: #00450e;
    color: white;
    text-align: center;
    font-size: 16px;
}

section {
    display: grid;
    grid-template-columns: 20% 60% 20%;
    margin-bottom: 1rem;
}
section aside {
    padding: 2%;
}

h1 {
    font-weight: 700;
    color: #00450e;
    font-size: 32px;
}

li {
    font-size: 16px;
    font-weight: 300;
}

h2 {
    font-size: 24px;
    color: #00450e;
}

footer {
    background: url(img/fresas.webp);
    text-align: center;
    padding: 3rem;
    background-size: cover;
}

footer p{
    color: white;
    font-weight: 500;
}

@media (max-width: 35rem) {
    body {font-size: 12px;}
    section {display: grid; grid-template-columns: 100%; margin-bottom: 1rem;}
    footer {margin: 0%; padding: 1rem;}
}