/* Reset básico y configuraciones generales */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Estilos para el fondo de video */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -100;
}

iframe {
    position: absolute;
    top: -10%;  /* Ajuste para cubrir la parte superior */
    left: 0;
    width: 100vw;
    height: 120vh;  /* Asegura cobertura total */
    border: none;
    pointer-events: none; /* Desactiva interacciones */
}

/* Estilos para el header/menu superior si es necesario */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #000; /* Fondo negro para la barra de navegación */
    color: white;
    padding: 10px 0;
    z-index: 1000; /* Asegura que está sobre el video */
}

.header nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.header nav ul li {
    display: inline;
    margin-right: 20px;
}

.header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}


h1 {
    font-size: 2em; /* Tamaño grande para el título */
    text-transform: uppercase; /* Mayúsculas para mayor impacto */
    letter-spacing: 0.1em; /* Espaciado para un estilo más cinematográfico */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Sombra para mejorar la legibilidad */
}

p {
    font-size: 1.5em;
    letter-spacing: 0.08em; /* Espaciado ligero para mejorar la estética */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Sombra para mejorar la legibilidad */
}

.content {
    position: absolute;
    top: 68%;
    width: 100%;
    text-align: center;
    z-index: 1000;
    color: white;
    font-family: 'Arial', sans-serif;
    padding: 20px;
    background-color: rgb(0 0 0 / 90%);
    border-radius: 8px;
}

h1 {
    font-size: 2.5em;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 7px;
    margin-bottom: 15px;
}

.large {
    font-size: 1.5em; /* Más grande para destacar palabras clave */
    font-weight: bold;
}

.medium {
    font-size: 1.2em; /* Tamaño intermedio para detalles importantes */
}

.small {
    font-size: 0.8em; /* Tamaño pequeño para información adicional */
}

.credits {
    font-size: 1em;
    letter-spacing: 0.05em;
    font-weight: lighter;
    margin-top: -17px;
}

.redes{
    width: 54px;
    cursor: pointer;
}

.logo{
    width: 234px;
    margin-bottom: -57px;
    margin-top: -34px;
}



/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .header nav ul li {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .video-background {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        z-index: -100;
        margin-top: -127px;
    }

    .content {
        position: absolute;
        top: 68%;
        width: 100%;
        text-align: center;
        z-index: 1000;
        color: white;
        font-family: 'Arial', sans-serif;
        padding: 20px;
        background-color: rgb(0 0 0 / 90%);
        border-radius: 8px;
        margin-top: -171px;
    }


    .posters{
        display: none;
    }

    .header nav ul li a {
        font-size: 14px;
    }

    .content {
        padding: 10px;
    }

    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1.2em;
    }

    .large {
        font-size: 1.2em;
    }

    .medium {
        font-size: 1em;
    }

    .small {
        font-size: 0.7em;
    }

    .credits {
        font-size: 0.9em;
    }

    .redes {
        width: 40px;
    }

    .logo {
        width: 180px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }

    .large {
        font-size: 1em;
    }

    .medium {
        font-size: 0.9em;
    }

    .small {
        font-size: 0.6em;
    }

    .credits {
        font-size: 0.8em;
    }

    .redes {
        width: 30px;
    }

    .logo {
        width: 150px;
    }
}