@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap');

body{  font-family: Roboto; font-weight: 300;padding: 0; margin: 0; transition: all 2s; }

header{
    display: grid;
    grid-template-columns: auto auto;
    padding: 2rem;
}

header nav{justify-self: end;}
header nav ul li{ display: inline-block;}
header nav ul li a{ text-decoration: none; color: #000;}


figure{ display: grid;background: #00450e; 
}
figcaption{ color: #fff; align-self: center; text-align: center;} 
figure img{ width: 100%;}


section{
    display: grid;
    grid-template-columns: 20% 60% 20%;

}
h1{ color: #00450e; font-size: 2rem; font-weight: 700;}
h2{ color: #00450e; font-size: 1.5rem; font-weight: 700;}


.footer-content { width: 100%; 
    min-height: 10rem;
    background-image: url(../img/fresas.webp);
background-size: cover;
}


footer p {color: #fff; 
    font-size: 1rem; 
    font-weight: 700; 
    text-align: center; 
    padding: 4rem;
}


