header{
background-color: #BBBBBB;
padding: 20px 0;
}
.caja{
width: 940px;
position: relative;
margin: 0 auto;
}
.navegacion
{
position: absolute;
top: 110px;
right: 0;
}
.navegacion .listas
{
display: inline;
margin: 0 0 0 15px;
}
.navegacion .direccion
{
text-transform: uppercase;/* texto en mayusculas */
color: black;
font-weight: bold;
font-size: 22px;
text-decoration: none;
}
.navegacion a:hover
{
color: #c34d09;
font-size: 23px;
font-weight:lighter;
}
.productos
{
width: 940px;
margin: 0 auto;
padding: 50px;
}
.productos li
{
display: inline-block;
text-align: center;
width: 30%;
vertical-align: top;
margin: 0 1.5%;
padding: 30px 20px;
box-sizing: border-box;
border: 2px solid #000000;
border-radius: 80px;
}
.productos li:hover
{
border-radius: 70px;
border: 4px solid #c34d09;
}
.productos li:active
{
border-color: #dec905;
}
.productos li:hover h2
{
font-size: 25px;
}
.productos h2
{
font-size: 20px;
font-weight: bold;
}
.producto-descripcion
{
font-size: 18px;
}
.producto-precio
{
font-size: 20px;
font-weight: bold;
margin-top: 10px;
}