*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'spartan',sans-serif;
}


body{
    width: 100%;
    background-color:white
}

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background:whitesmoke;
    box-shadow: 0 5px 15px rgba(0,0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    background-color:white;
}

#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li{
list-style: none;
padding: 0 20px;
}

.logo{
    height: 50px;
    width: 70%;
}




.product1{
    padding: 10px 12px;
    background-color:white;
    margin-left: 10%;
    margin-right: 10%;
}

 .pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.pro{
    background-color:white;
    width: 40px;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid black;
    text-align: center;
    margin: 10px 10px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0,0,0,0.02);
    margin: 15px 0px;
transition: 0.2s ease;
}

.pro:hover{
    box-shadow: 20px 20px 30px rgba(0,0,0,0.06);
}

.pro img{
    height: 150px;
    width: 150px;
}




    #pro1{
        background-color:white;
        width: 40px;
        min-width: 350px;
        padding: 10px 12px;
        border: 1px solid black;
        text-align: center;
        margin: 10px 10px;
        cursor: pointer;
        box-shadow: 20px 20px 30px rgba(0,0,0,0.02);
        margin: 15px 0px;
    transition: 0.2s ease;
    }


    #pro1:hover{
        box-shadow: 20px 20px 30px rgba(0,0,0,0.06);
    }
    
    
    
    #pro1 img{
        height: 300px;
        width: 300px;
    }
    
    #pro1 .des spam {
    color: #222;
    font-size: 12px;
    }
    
    #pro1 .des h4 {
        padding-top: 7px;
        color: blueviolet;
        font-size: 14px;
        }





      .left, .right {
        float: left;
        width: 20%; /* The width is 20%, by default */
      }
      
      .main {
        float: left;
        width: 60%; /* The width is 60%, by default */
      }

      .footer{
        height: 350px;
        align-items: center;
      }
      
      /* Use a media query to add a breakpoint at 800px: */
      @media only screen and (max-width: 1100px) {
        #navbar{
            flex-direction: column;
        }
        #add{
            display: flex;
        }
    }