
        .film-strip-container {
            overflow: hidden;
            width: 100%;
            position: relative;
            background-color: #333; /* Fondo oscuro para la cinta de película */
            padding: 20px 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            height: 600px; /* Ajusta el alto del contenedor */
            border: 20px solid #222; /* Borde adicional para simular la película */
            display: flex; /* Añadido */
            align-items: center; /* Centrar verticalmente */
        }
        .film-strip {
            display: flex;
            white-space: nowrap;
            padding: 25px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        .film-strip img {
            margin-right: 20px;
            transition: transform 0.2s ease-in-out;
            cursor: pointer;
            border: 5px solid #f3e8e8; /* Bordes oscuros en las imágenes */
            height: 450px; /* Mantén las imágenes en el alto del contenedor */
            object-fit: contain;
        }
        .modal-fullscreen {
            max-width: 95%;
            margin: 0 auto;
        }
        .modal-content {
            background-color: black;
        }
        .modal-body {
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }
        .modal-body img {
            max-width: 90%; /* Ajusta el tamaño de la imagen al 90% del modal */
            max-height: 90vh; /* Ajusta el alto máximo al 90% de la altura de la ventana */
            object-fit: contain;
        }
        .close-button {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 2rem;
            color: white;
            cursor: pointer;
        }
        .film-strip-container .perforation {
            position: absolute;
            background-color: white;
           
            width: 15px;
            height: 15px;
        }
        .film-strip-container .perforation.top {
            top: 5px;
        }
        .film-strip-container .perforation.bottom {
            bottom: 5px;
        }
   