.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
}

.gallery-img:hover {
    transform: scale(1.05);
}
