html {
  height: 100%;
  width: 100%;
}

.nav{
  background-color: rgb(255, 255, 255);
  border-radius: 30px;
}


ul,li{ 
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  text-align: center;
   padding: 10px 40px;

}

a{
  text-decoration: none;
  color: rgb(7, 7, 7);
  font-size: 25px;
  position: relative;
  padding: 10px;
  margin-top: 20px;

}
a::after{
  content: "";
  position: absolute;
  background-color: blueviolet;
  height: 3px;
  width: 0;
  left: 0;
  bottom: -10px;
  transition: 0.4s;
}
a:hover{
  color: rgb(92, 25, 159);
}
a:hover::after{
  width: 100%;
}

/* image  */

.intro {
  background-image: url('pictures/ban.jpg'); /* Use the correct path to your image */
  background-size: cover;  /* Make the image cover the whole section */
  background-position: center; /* Center the image */
  height: 400px; /* Set a height for the banner section */
}

/* bestsellersss */

h1{
  color: rgb(54, 39, 69);
  font-size: 70px;
  padding-left: 35%;
  align-content: center;
}

.bestsellers{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

.product{
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  width: 26%;
  height: 80vh;
  margin: 30px;
  box-sizing: border-box;
  float: left;
  text-align: center;
  cursor: pointer;
  padding-top: 20px;
  box-shadow: 0 14px 29px rgb(179, 161, 177) ;
  transition: 0.4s;

}
.product:hover{
  box-shadow: 0 3px 6px rgb(120, 108, 108);
}


.buy1 {
  color: white;               
  font-size: 20px;              
  font-weight: bold;           
  width: 100%;                 
  outline: none;               
  border: none;                
  background-color: #9946aa;   
  padding: 15px;               
  border-radius: 5px;        
  cursor: pointer;           
  transition: background-color 0.3s;
}

.buy1:hover {
  background-color: #c48ddd; 
}

.boy{
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  width: 28%;
  margin: 30px;
  box-sizing: border-box;
  float: left;
  text-align: center;
  cursor: pointer;
  padding-top: 20px;
}

.boy h4{
  font-size: 33px;
  font-family:'Oswald', sans-serif ;
}

.boy p{
  font-size: 22px;
  font-family:'Oswald', sans-serif ;
}


custom-options {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px; /* Add space between custom options and footer */
}

/* Footer styles */
footer {
  background-color: #d1cccc;
  color: #000000;
  padding: 20px 0;
  clear: both; /* Ensure footer clears any floated elements */
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  font-family:'Oswald', sans-serif ;
}

.footer-section {
  margin: 10px;
  margin-right: 10px;
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 10px;
}

.social-icons a {
  color: #050505;
  margin-right: 10px;
  font-size: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #555;
}

/* Ensure proper spacing for small screens */
@media (max-width: 768px) {
  .custom-options, .footer-content {
      flex-direction: column;
      align-items: center;
  }

  .boy, .footer-section {
      margin-bottom: 20px;
  }
}

