body {
    background-color: #D8B5FF;
}

h2 {
    font-size: 2REM;
    position: relative;
    color: white;
    left: 60%;
    bottom: 1300px;
}

h3 {
    color: white;
    font-size: 2REM;
    position: relative;
    color: white;
    left: 60%;
    bottom: 1300px;
}

.personas-actuando {
    width: 100%;
}

.seccion-de-fotos {
    position: relative;
    top: 40px;
    display: flex;
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra vertical (opcional) */
    flex-wrap: wrap;
    /* Que las fotos bajen a otra fila si no caben */
    width: 99%;
    margin: 0 auto 100px auto;
    /* Centra el contenedor con auto left/right */
    gap: 10px;
    /* espacio entre imágenes más moderno que margin */
}

.seccion-de-fotos img {
    margin: 3px;
    width: 30%;
}

.galeria-book img {
    transition: transform 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.galeria-book img:hover {
    transform: scale(1.05);
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

#imagen-lightbox {
    max-width: 90%;
    max-height: 80%;
    margin-bottom: 10px;
    border: 3px solid white;
    box-shadow: 0 0 10px #fff;
}

#cerrar-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.navegacion-lightbox button {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    margin: 0 20px;
}

@media (max-width: 601px) {
    .personas-actuando {
        height: auto;
    }
}