.gallery{
    display: flex; 
    justify-content: center;
    flex-wrap: wrap;   
}

.overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(239, 239, 239);
}

.gallery img {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
}

.gallery-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px;
}


@media (max-width:1000px){    
    
}