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

}

/*inicio cabecera*/

#div-cabecera {
    background-color: #333;
    height: 3.5em;
    width: 97em;
    padding-top: 4px;
    display: flex;
    justify-content: space-around;


}

.cabeceraContedores {
    display: inline-flex;

}

#div-logo img {
    height: 2.7em;

}


#div-barraBusqueda {
    width: 50%;
    height: 100%;
}

#div-barraBusqueda input {
    height: 95%;
    width: 90%;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

#div-barraBusqueda button {
    height: 95%;
    width: 10%;
    border: none;
    border-radius: 0 4px 4px 0;
    background: #bcc071;
    color: rgb(249, 249, 249);
    cursor: pointer;
}

#div-sesionUsuario {
    width: 25%;
    height: 100%;
}

#div-sesionUsuario button {
    height: 95%;
    width: 100%;
    font-size: 20px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #c1c74f;
    color: rgb(249, 249, 249);
}

button:active {
    transform: translateY(2px);
    
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
    
}

/*fin cabecera*/


/*inicio cuerpo*/

#div-cuerpo {
    margin-top: 10%;
    margin-left: 5%;
    display: flex;
    height: 15em;
    width: 80em;
}

#div-producto {
    width: 30%;
}

#div-producto img {
    width: 80%;
}

#div-descripcion {

    width: 40%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
}

#div-descripcion span {
    display: block;
    margin-top: 20px;
    font-size: 25px;
    font-weight: 600;
}

#div-descripcion ul {
    display: block;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
}

#div-botones {
    position: fixed;
    margin-left: 80%;
    height: 100%;
    width: 10%;
    margin-top: 1%;

}

#compra {
    display: block;
    height: 5%;
    width: 100%;
    margin-bottom: 5%;
    background-color: #ec6567;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

#cesta {
    height: 5%;
    width: 100%;
    background-color: #dde360;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
/*fin cuerpo*/
