.product_container {
    display: grid;
    grid-template-columns:1fr 1fr;
    /* margin: 5px; */
}

.product_container h2{
    text-align: left;
}

.product_container img {
    width: 300px;
    height: auto;
    align-items: center;
}

.thumbnail_container img {
    width: 80px;
    border: 1px solid grey;
    /* padding:7px; */
    border-radius: 5px;
    margin-top: 20px;
}

.product_container > div:first-child {
    text-align: center;
}

.product_overview {
    margin-top: 20px;
}

.model {
    color: grey ;
    font-size: 16px;
}

@media screen and (max-width: 600px) {
    .product_container {
    grid-template-columns: 1fr;
    margin: 5px;
    }
    .product_container img {
    width: 100%;
    height: auto;
    }
    .thumbnail_container img {
    width: 80px;
    padding:7px;
    }
    .product_container h2{
    margin-top: 20px;
    }

}
