/* --- CONFIGURACIÓN DE PÁGINA --- */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    /* El fondo base es un degradado uniforme de espacio profundo */
    background: radial-gradient(ellipse at bottom, #10151c 0%, #050508 100%);
    overflow: hidden; /* Evita scrolls extraños */
    font-family: sans-serif;
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
}


/* --- EL UNIVERSO DE ESTRELLAS --- */
#universo {
    position: fixed; /* Ocupa toda la pantalla siempre */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Detrás de todo */
}
#name{
    color: white;
}
#final{
     color: white;
     display: flex;
     justify-content: top;
     align-items: center;
     flex-direction: column;
}
#seccions {
    max-width: 600px;
    width: 100%;
    z-index: 10;
    background: rgba(81, 84, 131, 0.39);
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
#seccions a{
    font-size: 20px;
    padding: 5px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    
}
#seccions a:hover {
    color: #ffcc00;
}

#div-columna{
    height: 90vh;
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
}

#div-fila{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10%;      
    width: 90%;
}
/* Estilo para cada estrella generada por JS */
.estrella {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.3; /* Opacidad base para que no desaparezcan del todo */
    
    /* Nombre de la animación, duración base y bucle infinito */
    animation: parpadeo infinite ease-in-out;
}

@keyframes parpadeo {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2); /* Un pequeño aumento de tamaño al brillar */
    }
}

/* --- TU CUADRO DE BIENVENIDA --- */
.contenedor-principal {
    position: relative;
    z-index: 10; /* Delante de las estrellas */
    padding: 20px;
    overflow-y: auto;
    align-items: center;
}

.cuadro-bienvenida {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
}

.cuadro-bienvenida h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

.cuadro-bienvenida p {
    color: #555;
    font-size: 0.9em;
    line-height: 1.5;
    margin-top: 5px;
    margin-bottom: 5px;
}

