.product-section {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.product-block {
    display: inline-block;
    width: 320px;
    text-align: left;
    vertical-align: top;
    background-color:#eccd7859;
    margin: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.product-block img {
    height: 270px;
    width: 100%;
    object-fit: cover
}

.product-block h2 {
    padding: 0px 20px;
    text-align: center;
    font-size: 24px;
}

.product-block p {
    font-size: 15px;
}