:root {
    --pr: #232122;
    --sc: #fac500;
    --tc: #333;
    --ct: #fff;
    --tx: #969696;
  }

body{
    font-family: 'Open Sans', sans-serif; 
    font-weight: 16px;
    color:var(--tx);
    /*background: url('../img/sonali.png') no-repeat fixed -25px 105%;*/
}
h1, h2, h3, h4, h5, h6 nav *{
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2em;
}
h2{
    color:var(--pr);
}
h3{
    color:var(--tc);
    border-bottom: 1px dotted var(--tx);
}
#cabecera{
    background-color: var(--pr);
}
#cabecera img{
    padding: 12px;
}
nav{
    position: fixed;
    top: 100px;
    height: calc(100% - 100px);    
    width: 100%;    
    background-color: var(--sc);    
    overflow: auto;
}
nav a{
    color:var(--pr);
    font-family: 'Playfair Display', serif;    
}
nav ul li{    
    border-bottom: 1px solid var(--ct);
}
nav ul li ul li{    
    width: 40%;
    display: inline-block;
}
#contenido{
    margin-top:150px;
}
#botonvolver{    
    position: absolute;
    top:34px;
    right: 96px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: url('../img/volver.png') no-repeat 0 0;    
}
#botonmenu{    
    position: absolute;
    top:34px;
    right: 34px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: url('../img/menu.png') no-repeat 0 0;    
}
.botonclose{
    background: url('../img/menuclose.png') no-repeat 0 0 !important; 
}

footer{
    color:var(--tx);
    background-color:var(--pr);
    text-align: center;
    padding: 15px;    
    display: flex;
    justify-content: space-between;
}
footer p{
    padding: 10px;
    box-sizing: border-box;
}
footer a{
    color:var(--sc);
}

@media (max-width: 1024px) {
    #logo img{
        max-width: 250px;
    }
    #botonmenu{    
        position: absolute;
        top:34px;
        right: 14px;
    }
    #botonvolver{    
        position: absolute;
        top:34px;
        right: 60px;
    }
    nav{
        top: 100px;
        height: calc(100% - 100px);
    }
    #contenido{
        margin-top:135px;
    }
    footer{
        display: block;
    }
    footer p{
        width: 100%;
    }
    footer p span.horario{
        display: block;
    }
}