*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: white;
    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: auto auto;
    padding: 2rem;
}

header nav ul {
    display: flex;
    justify-content: end;
    list-style: none;
}

header nav ul li {
    padding: 0.3rem;
    font-size: 1.1rem;
}

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

figure {
    margin: 1.5rem 2.5rem;
    background-color: #034810;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

figcaption {
    color: whitesmoke;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

figure img{
    width: 100%;
}

.secciondos {
    display: grid;
    grid-template-columns: 1fr 3fr;
    padding: 4rem;
}

.ingredientes{
    color: #034810;
}

.pasos {
    margin-top: 1rem;
    color: #034810;
    font-size: 2rem;
}

.listado {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0rem 1rem 2rem;
}

footer {
    background-image: url(img/fresas.webp);
    background-size: cover;
    width: 100%;
    padding: 10rem 0rem;
    margin-bottom: 1rem;
    text-align: center;
    color: white;
    font-size: 1rem;
    font-weight: 700;
}