

body {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

header {
    display: flex;

}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    display: grid;
    text-decoration: none;
    align-self: self-end;
}

header img{
    align-self: center;
    margin-left: 30px;
    padding-top: -50%;
}

h2 {
    color: green;
    text-align: center;
    padding-top: 10px;
}

.hero_image {
    background-color: green;
    display: grid;
    grid-template-columns: 60% 40%;
    width: 100%;
}


section h4 {
    text-align: center;
    align-self: center;
}

section img {
    width: 100%;
    align-self: self-end;
}


.Detalles {
    display: grid;
    grid-template-columns: 80% 20%;


}



section ol {
    text-align:left;
    align-self: center;
}



footer {
    width: 100%;
    text-align: center;
    background: url('../recursos/fresas.webp')
}

footer h3 {
    color: white;
    padding: 10%;
}

@media (max-width:50rem) {
    .Detalles {
        display:  grid; grid-template-columns: 100%;
    }

    .hero_image {
    display:  grid; grid-template-columns: 100%;
    }
    
}

