@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

body {
    background-color: rgb(255, 255, 255);
    font-family: "OpenSans", sans-serif;
}

h2 {
    font-size: 1.8rem;
    color:rgb(17, 71, 54);
}

h3 {
    font-size: 1.4rem;
    color:rgb(17, 70, 53);
}


/*Header*/

header {
    background-color: rgb(255, 255, 255);
    padding: 2rem;
    margin: 0;
    height: 6rem;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
}

a {
    color:rgb(117, 119, 119);
    text-decoration: none;
    font-size: 1rem;
}


/*Principal*/

section {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        margin: auto;
        font-size: 1.05rem;
}

article {
    background-color: rgb(255, 255, 255);
    height: auto;
    margin: auto;
    color:rgb(117, 119, 119);
    padding: 1rem;
    min-width: 2rem;
}

article img {
    width: 100%;
    max-width: 20rem;
    padding-bottom: 2rem;
    background-color: rgb(17, 70, 53);
}


/*Footer*/

footer {
    background-image: url(../img2/fresas.webp);
    background-size: cover;
    width: 100%;
    padding: 5rem 0;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    font-weight: 600;
}

footer img {
    width: 100%;
}



