
/* Estilos generales del body */
body {
    font-family: 'Playfair Display', serif;
    background-color: #1a1a2e;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Título principal */
h1 {
    margin-top: 150px;
    font-size: 40px;
    letter-spacing: 3px;
    color: #C8963E;
}
/* Subtítulo */
p {
    margin-top: 10px;
    font-size: 16px;
    color: #aaaaaa;
    letter-spacing: 2px;
}

/* Estilos para el video */
/* Contenedor del video */
#contenedor-video {
    margin-top: 30px;
}
/* Video */
video {

   
    border: 3px solid #b9b9be;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Contenedor del botón */
#contenedor-boton {
    margin-top: 25px;
}

/* Botón */
button {
    background-color: #f0c040;
    color: #1a1a2e;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

/* Efecto al pasar el mouse */
button:hover {
    background-color: white;
}


/* Estrellas */
.estrella {
    position: fixed;
    background-color: white;
    border-radius: 50%;
    opacity: 0.5;
    animation: parpadeo 3s infinite alternate;
}

@keyframes parpadeo {
    from { opacity: 0.1; }
    to { opacity: 0.8; }
}