@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&family=Sofia+Sans+Semi+Condensed:ital,wght@0,1..1000;1,1..1000&family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap');

@import url('reset.css');

body{
    background-color: steelblue;
   min-height: 100dvh;  /*100% del viewport height */
}

.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


header, footer{
    width: 100%;
    height: 10%;
    padding:50px
}
main{
    background-color: rgb(224, 224, 224);
    height: 80%;
}

.banner, .descripcion, .nosotros, .productos{
    width: 100%;
   
    border: solid 3px black;
}

.amarillo{
    background-color: rgb(191, 250, 13);
}


.productos{
    display: flex;
height: 500px;
    flex-direction: row;
    justify-content:center; /* Centra los productos horizontalmente */
    align-items: center; /* Centra los productos verticalmente */
    gap: 5px; /** Espacio entre los productos */
}

.producto{
    /* flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto; */

    flex: 1 0 25%; /* Equivalente a las tres propiedades anteriores */
    height: 100%;
    background-color: orange;
    border: solid 3px black;
    padding: 5px;
    ;
}


.foto{
    height: 60%;
    width: 100%;
    background-color: white;
}

.staff{
    height: 280px;
    display: flex;
    width: 100%;
    background-color: rgb(191, 250, 13);


    .persona{
        height: 100%;
        width: 25%;
        background-color: rgba(172, 0, 0, 0.575)
    }
    .foto{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: blue;
    }
} 

.fs-20{
    font-size:3em;
}

