#gallery {
    scroll-margin-top: 80px;
    margin-bottom: 40px;
}

.photos {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.photos img {
    width: 400px;
    height: 265px;
    object-fit:contain;
    
}

.photos img:hover {
    transition: transform 0.5s;
    transform: scale(1.15);
}