.gallery{
    width: 90%;
    margin: 0 auto;

}
        .thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 20px;
            height: 70vh;
            overflow-y: scroll;
            
        
        }
        .thumbnail {
            cursor: pointer;
            transition: transform 0.3s;
            
            border-radius: 4px;
            
        }
        .thumbnail:hover {
            transform: scale(1.03);
           
        }
        .thumbnail img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            transition: opacity 0.3s;
        }
        .thumbnail:hover img {
            opacity: 0.9;
        }
        .photo-info {
            padding: 8px;
            background: #f8f9fa;
            text-align: center;
        }
        .photo-info h4 {
            margin: 0;
            font-size: 14px;
            color: #333;
        }
        .photo-info p {
            margin: 5px 0 0;
            font-size: 12px;
            color: #666;
        }
        .gallery h6 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
        }