/* Cielo estrellado */
#cielo-estrellado {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Para que esté detrás de todo */
    background-color: black; /* Fondo negro */
    overflow: hidden;
}

.estrella {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: parpadeo 3s infinite ease-in-out;
}

@keyframes parpadeo {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}
