body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #757575;
    background: #eeeeee;
    font-size: 1em;
    line-height: 1.5em;
 
    padding-top: 80px;
}
h1{
    font-size: 2.3em;
    line-height: 1.3em;
    margin:15px 0;
    text-align: center;
    font-weight: 300;
}
p{
    margin: 0 0 1.5em 0;
}
img{
    max-width: 30%;
    height: auto;
    align-items: center;
}
/*estilos a la cabecera*/
#main-header{
    background: #000000;
    color: rgb(0, 0, 0);
    height: 80px;
    padding: 1000000;
}
#main-header a{
    color: rgb(255, 255, 255);
}
#logo-header{
    float:left;
    padding: 15px 0 0 20px;
    text-decoration: none;
}
#logo-header:hover{
    color:#ffffff
}
#logo-header .site-name{
    display: block;
    font-size: 700;
    font-size: 1.2em;
}
#logo-header .site-desc{
    display: block;
    font-weight: 300;
    font-size: 0.8em;
    color: #999;
}
nav{
    float: right;
}
nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
    padding-right: 20px;
}
nav ul li{
    display: inline-block;
    line-height: 80px;
}
nav ul li a{
    display: block;
    padding: 0 5px;
    text-decoration: none;
}
nav ul li a:hover{
    background: #3d3d3d;
}
li{
    font: Arial;
    float: left;
}
li a, .dropbtn{
    display: inline-block;
    color: #00000048;
    text-align: center;
    padding: 0px 16px;
    text-decoration: none;
}
li a:hover, .dropbtn:hover .dropbtn{
    background-color: #000000;
}
li.dropdown{
    display: inline-block;
}
.dropdown-content{
    display: none;
    position: absolute;
    background-color: #00000080;
    min-width: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0,);
    z-index: 1;
}
.dropdown-content a{
    color: black;
    padding: 6px 8px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover{
    background-color: rgb(46, 46, 46);
}
.dropdown:hover .dropdown-content{
    display: block;
}
#main-content{
    background:white;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
}
#main-content header,
#main-content.content{
    padding: 40px;
}
#main-header{
    background: #1f1f1f;
    color: rgb(255, 255, 255);
    height: 80px;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    position: fixed;
}




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial';
}
.contenido{
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    display: flex;
}
.mostrador{
    width: 100%;
    transition: .5s ease;
}
.mostrador .fila{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.mostrador .fila .item{
    max-width: 210px;
    padding: 30px;
    height: 250px;

    text-align: center;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: .3s;
}
.mostrador .fila .item:hover{
    background-color: #e6e6e6;
}
.mostrador .fila .item img{
    width: 100%;
    margin: 30px 0;
}
.mostrador .fila .item .descripcion{
    color: #000;
    font-weight: bold;
}
.mostrador .fila .item .precio{
    color: #000;
    font-weight: bold;
    font-size: 20px;
}
.seleccion{
    transition: .5s ease;
    opacity: 0;
    width: 0%;
    border: 1px solid #000;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.cerrar{
    position: absolute;
    right: 0;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.info{
    padding: 20px;
}
.info img{
    display: block;
    margin: 30px auto;
    width: 80%;
}
.info h2{
    color: #000;
    margin-bottom: 10px;
}
.info p{
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}
.info .precio{
    font-size: 30px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    display: block;
}
.info .fila{
    display: flex;
    align-items: flex-end;
}
.info .fila label{
    display: block;
    margin-bottom: 10px;
}
.info .fila select{
    width: 100px;
    font-size: 18px;
    padding: 6px;
    margin-right: 30px;
}
.info .fila button{
    height: 40px;
    border: none;
    padding: 0 10px;
    color: #fff;
    background-color: #000;
}

