@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;
}
/*arriba*/
header{
    padding: 2rem;
    height: 5rem;
    margin: 1rem;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
}
a{
    color:rgb(107, 107, 107);
    text-decoration: none;
    font-size: 1rem;
}
/*medio*/
section {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    margin: auto;
    font-size: 1rem;
}
body{
    background-color: rgb(255, 255, 255);
    font-family:"roboto";
}
h2{
    font-size: 2rem;
    color:rgb(17, 71, 54);
}
h3{
    font-size: 1.5rem;
    color:rgb(17, 70, 53);
}
article {
    background-color: rgb(255, 255, 255);
    height: auto;
    margin: auto;
    color:rgb(51, 51, 51);
    padding: 1rem;
    min-width: 2rem;
}
article img {
    width: 100%;
    max-width: 20rem;
    padding-bottom: 2rem; /*línea*/
    background-color: rgb(17, 70, 53);
}
.alfajorcitos{
    color: rgb(47, 92, 133);
    font-size: 1rem;
    display: inline-block;
    padding: 0rem 0rem 2rem 3rem;
}

/*final*/
footer {
    background-image: url(../img/fresas.webp);
    margin: 0%;
    height: auto;
    padding: 5rem;
    background-size: cover;
    text-align: center;
    color: rgb(255, 255, 255);
}