.product_container{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.product{
    box-sizing: border-box;
    background-color: aqua;
    width: 100%;
    max-width: 350px;
    height: 400px;
    overflow: hidden;
    display: flex;
    padding: 10px;
    flex-direction: column;

}
.product_image{
    width: 100%;
    height: 60%;
    overflow: hidden;
    object-fit: cover;
    margin-bottom: 20px;
}
.product_text{
    flex-grow: 1;
}
.product_title{
    margin:0;
    margin-bottom: 20px;
}
.product_description{
    margin: 0;
    margin-bottom: 20px;
}
@media only screen and (min-width: 700px) {
    .product_container{
        flex-direction: row;
        margin-bottom: 140px;
    }
}