#mainpage{
    border: 0px solid red;
    width: 80%;margin: auto;
    margin-top: 5%;
    display: flex;padding: 20px;
    justify-content: space-between;
}
#list{
    width: 35%;height: 600px;
    border: 0px solid blue;
    margin-right: 20px;
    
    /* background-color: #ECEFF1; */
}
 #list>select{
    width: 200px;height: 50px;
    border: 0;
    font-size: large;
    border-bottom: 1px solid gray;
}




#mainpage>:nth-child(2){
    width: 70%;height: auto;
    border: 0px solid blue;

}
#product{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(auto, auto);
    gap: 20px;
    line-height:0px; 
}
#product img{
    width: 100%;
    transition: 0.5s;
    line-height:0px; 
}
h4+p{
    font-size: 13px;
    line-height: 10px;
    color: gray;
}
#product>div :nth-child(5){
    font-size: 12px;
}
#product img:hover{
    transform:scale(1.1);
    z-index: 2;
}
#nav+h2{
    width: 80%;margin: auto;margin-top: 150px;
    border-bottom: 3px solid #fdd835;
    padding: 20px;
    font-family:sans-serif;
    font-size: 30px;
}
#count{
    color: gray;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: lighter;
}

