.contenedor { max-height: none; width: 100%; } .banner { background-color: #333; color: white; padding: 2px; } .banner h1 { font-size: 35px; margin-left: 2%; pointer-events: none; /* Evita que el cursor se posicione sobre el título */ } .banner nav { display: flex; justify-content: space-between; /* Alinea los elementos al principio y al final */ align-items: center; /* Alinea verticalmente los elementos */ } .opciones { list-style: none; padding: 0; margin: 0; } .opciones li { display: inline-block; margin-left: 10px; /* Espacio entre elementos */ margin-right: 30px; /* Espacio entre elementos */ } .opciones li a { color: white; text-decoration: none; /* Quita el punto de los enlaces */ } .opciones li a:hover { text-decoration: underline; /* Subraya los enlaces al pasar el mouse sobre ellos */ }