.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

.gallery-item {
    width: 30%;
    transition: transform .2s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-img-container {
    background-color: white;
    width: 100%;
    height: 300px;
}

.gallery-img {
    width: 70%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: white;
    margin: auto;
}

.gallery-title {
    margin-top: 30px;
}

.gallery-price {
    font-size: 17px;
    font-weight: normal;
}