@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Poppins:wght@400;500;600;700;800&display=swap');
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(../img/Teatromania1.png) no-repeat center center fixed, linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 90%);
    background-size: cover;
    background-blend-mode: overlay;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.412);
    z-index: -1;
}

h1 {
    margin-top: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
}

.no {
    margin-top: 50px;
}

.container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    /* Cambio para dispositivos más pequeños */
    justify-content: center;
    align-items: center;
    height: auto;
    /* Ajuste para permitir contenido fluido */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
}


/* Estilos para el video */

.video {
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
    /* Espacio debajo del video */
    height: 400px;
}

.video iframe {
    width: 100%;
    height: 400px;
    border: none;
}


/* Estilos para la información */

.info {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    color: white;
    text-align: center;
}

.info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.info p {
    font-size: 1rem;
    line-height: 1.6;
}


/* Media Queries para hacer el diseño responsivo */

@media (max-width: 1024px) {
    .container {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .info h2 {
        font-size: 2rem;
    }
    .info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    .info h2 {
        font-size: 1.6rem;
    }
    .info p {
        font-size: 0.8rem;
    }
}