* {margin: 0; padding: 0;}

body {background-color: black;}

#contenedor {width:100%;
             display:grid;
             grid-template-columns: 20% 80%;
            }

nav {height: 550px;}

nav a{text-decoration: none;
       color:gold;}

#menus{color:goldenrod;}
#menus li{margin:5px 0;font-size:small;}

#cine {height: 550px;
      /* background-image: url("../imagenes/sala-cine2.jpg");*/
      background-image: url("../imagenes/cine.png");
       background-size:100% 100%;
	position:relative;}

#pantalla {width:75.5%; height:320px; 
	    position:absolute;
           top:10%;
           left:12%; 
           background-color: black;
           overflow-y: scroll;
	   }
#rightfoot {width:100%;
            display:grid;
	    grid-template-columns:50% 50%;}

#menciones, #copyright {color:whitesmoke;
      /* grid-column: span 2;*/
       height: 25px;
       text-align: right;}

#copyright {text-align: left;
font-style: italic;
              font-size: 0.8em;
font-family:simbolos;}

#menciones a{text-decoration: none;
             color:whitesmoke;
              font-style: italic;
              font-size: 0.8em;}


/* Estilo del banner de cookies */
.cookie-banner {
       position: fixed;
       bottom: 0;
       left: 0;
       width: 100%;
       background-color: #333;
       color: white;
       text-align: center;
       padding: 15px;
       box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
       z-index: 1000;
       display: flex;
       justify-content: center;
       align-items: center;
   }
   
   .cookie-banner p {
       margin: 0;
       font-size: 14px;
   }
   
   .cookie-banner button {
       margin-left: 20px;
       padding: 8px 16px;
       background-color: #007bff;
       border: none;
       color: white;
       cursor: pointer;
       font-size: 14px;
       border-radius: 4px;
   }
   
   .cookie-banner button:hover {
       background-color: #0056b3;
   }
   