.menu-container img{
    width: 100%;
    display: flex;
}
.menu{
    display: flex;
    width: 100%;
    background: white;
}
.menu a{
    flex: 1;
    font-size: 18px;
    text-align: center;
    display: block;
    background-color: rgb(105, 103, 103);
    padding: 20px;
    font-weight: bold;
    color: aliceblue;
    border-right: 2px solid white;
}
.menu a:first-child{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.menu a:last-child{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.loaisanpham{
    display: block;
    width: fit-content;
    background-color: white;
}
.loaisanpham li{
    padding: 10px;
    display: block;
    font-weight: bold;
    border-bottom: 1px solid white;
    color: black;
}
.loaisanpham li:nth-child(odd){
    background-color: aliceblue;
}
.loaisanpham li:nth-child(even){
    background-color: antiquewhite;
}