@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('reset.css');
body
{
    background-color:rgb(184, 223, 255);
     /*100% del viewport del 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%;
    display: flex;
    align-items: center;
    gap:10px;
}

main
{
    background-color:rgb(189, 173, 233);
    height:80%;
}

.banner, .descripcion, .nosotros, .productos
{
    width: 100%;
    height: 400px;
    border: solid 2px black; /*se puede poner double, dotted y solid para el border*/

    object-fit: cover;
}

.contenedorPadre
{
    margin: auto;
    height: 80%;
    width: 80%;
    background-color:white;
    border-radius: 3em;

    position: relative;
}

.contHijo
{
    top: 50px;
    left: 50px;
}

.hijoTexto
{
    position: absolute;
    width: 60%;
    bottom: 50px;
    right: 50px;
}

.f20{
    font-size: 40px;
}

.papiRelative
{
    position: relative;
}

.simbolo1
{
    z-index: 0;
    position: absolute;
    top: -20px; left: -20px;

}

.simbolo2
{
    position: relative;
    bottom:-20px; right:-20px;
}

.z-1
{
    z-index:2;
    position: relative;
    font-size: 20px;
    right: -20px;
}


.descripcion{
    display:flex;
}

.amarillo
{
    background-color: rgb(238, 245, 172);
}

.productos
{ 
    display: flex;
    height: 500 px;
    flex-direction: row;
    justify-content: center;/* puede decir start tmb que es le medio, end a la derecha, space-around que termina con espacio, space-evenly no ocurre eso, space-between*/
    align-items: center;/*Centra los productos verticalmente*/
    gap: 5px;/*Espacio entre los productos*/

}

.producto{
    /*flex-grow: 1; /* que se agande lo más que pueda si hay espacio*/
    /*flex-shrink: 1; /*que se junte*/
    /*flex-basis: auto el ancho minimo*/
    flex: 1 1 25%;

    height:100%;
    width:10%;

    background-color:rgb(240, 201, 129);
    border: solid 3px black;
    font-size: 30px; 
    padding: 5px;
}
.foto
{
    height:60%;
    width: 100%;
    background-color: white;
}
.staff
{
    height: 280px;
    display: flex;
    width:100%;
    width: 100%;
    background-color: white;
    justify-content: space-between;

    .persona
    {
        height:100%;
        width:25%;
        background-color: white;
        text-align: center;
        display: flex;
        justify-content:space-around;
        flex-direction: column;
        align-items: center;
    }

    .foto
    {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: blue;
    }
}
.texto{
    width: 50%;
    height: 100%;
}
.logo
{
    height:100%;
    width:100px;
}
.w50
{
    width:50%;
    height:100%;
}



