* {
    box-sizing: border-box;}


body {
    font-family: 'Roboto', sans-serif;
    padding-top: auto; /* Ajusta este valor según la altura de tu header */
    margin: 0;}

h1 {
    font-size: 3.5em;}

h2 {
    font-size: 2.7em;
color: blueviolet;}

h3 {
    font-size: 2em;}

p {
    font-size: 1.25em;}

ul {
    list-style: none;}

li {
    font-size: 1.25em;}


.container {
    max-width: 1400px;
    margin: auto;
}

.color-acento {
    color: blueviolet;
}
header{
    background-color: rgb(245,245,245);
    
}

header .logo{
    margin: 0;
    padding: 25px 30px;
    font-weight: bold;
    color: blueviolet;
    font-size: 1.6em;
}

header .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header nav{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 25px;
}

header a{
    padding: 5px 12px;
    text-decoration: none;
    font-weight: bold;
    color: black;
}

header a:hover{
    color: blueviolet;
}
@media (min-width: 850px){
    header{
        position: fixed;
        width: 100%;
    }

    header .container{
        flex-direction: row;
        justify-content: space-between;
    }

    header nav{
        flex-direction: row;
        padding-bottom: 0;
        padding-right: 20px;
    }

}
.seccion {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.left, .right {
    flex: 1;
    min-width: 300px; /* Asegura que el contenido se mantenga legible en pantallas pequeñas */
}

.left iframe {
    width: 100%;
    max-width: 600px; /* Ajusta según tu preferencia */
    height: 380px;
}

@media (max-width: 768px) {
    .header .container, .seccion {
        flex-direction: column;
        align-items: center;
    }
    
    header nav {
        flex-direction: column;
    }
}
/* Estilo para el contenedor del menú desplegable */
.dropdown {
    position: relative;
    display: flex;
}

/* Estilo para el contenido del menú desplegable */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Estilo para los enlaces dentro del menú desplegable */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Muestra el menú desplegable al pasar el mouse */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Cambia el color de los ítems del menú al pasar el mouse */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Estilo para el enlace de GÉNEROS cuando se pasa el mouse */
.dropdown:hover a {
    background-color: #f1f1f1;
}
footer{
    justify-content: center;
}
