 *{
    padding:0;
    margin: 0;
}



body{
    
        font-family: "Mochiy Pop One", serif;
    
      }

.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
  

} 
.navbar-links{
  display: flex;
  column-gap: 20px;
  
  
}  
.navbar-links a{
  text-decoration: none;
  color: #1D232C;
}
.navbar-links a:hover{
  text-decoration: underline;
  color: #1D232C;
}
.navbar-menu-toggle{
  display: none;
}
.side-navbar{
  background-color: #1D232C;
  width: 50%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px;
  color: white;
  display: none;
  transition: 2s;
}
.side-navbar-link{
  margin-bottom: 30px;
}
.side-navbar-links a{
  text-decoration: none;
  color: white;
}
.side-navbar-links a:hover{
  text-decoration: underline;
}
.header{
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 50px;
}
.header-button{
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
  background-color: #1D232C;
  color: white;
  cursor: pointer;
}
.service{
  padding: 20px;
}
.service-container-1{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-container-2{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.service-container-2 div{
  background-color: #F2F4F7;
  border-radius: 5px;
  padding: 10px;
}
.new-arrival{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;

}
.new-arrival-container{
  position: relative;
  flex-basis: 20%;
}
.new-arrival button{
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 5%;
  padding-bottom: 5%;
  margin-top: 10px;
  color: #1D232C;
  position: absolute;
  top: 50%;
  left: 18%;
  border-radius: 10px;
  border: none;
}
.news{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news input{
  padding: 11px;
  width: 80vw;
  margin-bottom: 10px;
  border: solid black 3px;
}
 .news button{
  margin-top: 10px;
  color: #F2F4F7;
  background-color: #1D232C;
  border-radius: 10px;
  padding: 10px;
 }
 .footer{
  margin-top: 20px;
  padding: 40px;
  background-color: #1D232C;
  color: #F2F4F7;
 }
 .product-section{
  margin-top: 20px;
 }
 .product-search{
  width: 80%;
  border: solid black 2px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin: auto;
 }
 .product-search input{
  border: none;
  background-color: transparent;
  width: 100%;
 }
 .product-search input:focus{
  outline: none;
 }
 .products{
  padding: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-around;
 }
 .products-box{
  text-align: center;
  flex-basis: 20%;
 }
 .products-box img{
  border-radius: 10px;
 }
 .contact-container{
  width: 700px;
  height: 500px;
  background-color: #1D232C;
  border-radius: 30px;
  color: white;
  margin-left: 310px;
  margin-top: 20px;
  
 }
 .contact{
  margin-left: 50px;
  padding: 20px;
  column-gap: 20px;

 }
 .style{
  margin-left: 50px;
  padding-top: 70px;
 }
 .btn{
  padding: 10px;
  margin-top: 10px;
  background-color: blue;
  color: white;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  
 }
 .type-1{
  width: 500px;
  height: 20px;
 }
 .type-2{
  width: 500px;
  height: 20px;
 }
 .type-3{
  width: 500px;
  height: 60px;
 }
@media screen and (max-width: 700px){
  .navbar-menu-toggle{
    display: block;
  }
  .navbar-links{
    display: none;
  }
  .side-navbar{
    display: none;
   
  }
  .header-image{
    display: none;
  }
  .service-container-1{
    display: none;
  }
  .service-container-2{
    flex-direction: column;
  }
  .contact-container{
    margin-left: -10px;
  }
  }

 