*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(255, 255, 255);
}
nav{
    display: flex;
    height: 60px;
    width: 100%;
    border: 0.5px solid black;
    justify-content: space-evenly;
    align-items:center;
}
nav ul{
    display: flex;
}
nav ul li a {
    text-decoration: none;
}
nav ul li{
    padding: 20px;
}
.menu1{
        display: none;
    }
.productcard{
    width: max-content;
    height: max-content;
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    margin: auto;
    margin-top: 10px;
}
.productImage{
    width: 100px;
    height: 100px;
    padding: 10px;
}
#main{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: center;

}
.sideimage img{
    width: 100%;
    height: max-content;  
}
.sideimage1{
    width: 100%;
}
@media (max-width:567px){
    nav{
        justify-content: space-evenly;
        align-items:center;
    }
    nav div{
        font-size: 30px;
    }
    nav span{
        font-size: 30px;
    }
    nav ul{
    display: none;
    }
    nav button{
        font-size: 50px;
        background-color: transparent;
        border: 0px;  
    }
}