 .gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            padding: 10px;
        }


        figure {
            text-align: center;
            width: 450px;
        }
        .gallery img {
            width: 450px;
            height: auto;
            cursor: pointer;
            border-radius: 15px;
            transition: transform 0.2s;
            box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); 
        }
        .gallery img:hover, .gallery img:focus {
            transform: scale(1.05);
            /* outline: 3px solid #007BFF; */
        }
        figcaption {
            
            color:rgb(9, 9, 11); 
            margin-top: 15px;
           
        }
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            flex-direction: column;
            color: white;
            z-index: 1000000;
        }
        .lightbox img {
            max-width: 90%;
            max-height: 80%;
        }
        .lightbox p {
            margin-top: 10px;
            font-size: 18px; /*  Schriftgröße Bildunterschrift  */
        }
        .lightbox:focus {
            outline: none;
        }
        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 30px; 
            color: white;
            cursor: pointer;
        }

        #lightboxCaption {
            
            width: 90%;
            text-align: center;
        }