body{
    margin: 0;
    padding: 0;
    font-family: Philosopher;
    background-color: #eee;
}
.item img{
    max-width: 100%;
}
.container{
    text-align: center;
    width: 900px;
    margin: auto;
    max-width: 90vw;
    padding-top: 10px;
}
.listProduct{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.listProduct .item{
    background-color: #cccccc;
    padding: 10px;
    border-radius: 0px;
}
.listProduct .item h3{
    font-weight: 500;
    margin: 5px;
    font-size: large;
    line-height:20px;
}

.title{
    font-size: x-large;
    text-align: center;
    margin: 20px 20px 15px 20px;
}
a{
    color: unset;
    text-decoration: none;
}
@media only screen and (max-width: 992px) {
    .listProduct{
        grid-template-columns: repeat(2, 1fr);
    }
    .detail{
        grid-template-columns:  40% 1fr;
    }
}
@media only screen and (max-width: 768px) {
    .listProduct{
        grid-template-columns: repeat(2, 1fr);
    }
    .detail{
        text-align: center;
        grid-template-columns: 1fr;
    }
    .detail .image img{
        width: unset;
        height: 50vh;
    } 
    .detail .name{
        font-size: xx-large;
        margin: 0;

    }
    .detail .buttons button{
        font-size: medium;
    }
    .detail .buttons{
        justify-content: center;
    }
}
