.gallery {
    
    margin:20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.gallery-img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    cursor: pointer; 
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.gallery-img:hover {
    transform: scale(1.05); 
}


.modal {
    display: none; 
    position: fixed;
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    
    
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.modal-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}


#caption {
    margin-top: 15px;
    color: white;
    font-size: 1.2rem;
}


.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #F59E0B;
}