body {
  margin: 0;
  padding: 0;
  background:  #87de86e0;
  background-repeat: no-repeat;
 background-size: cover;
 color: auto;
 font-family: Arial, sans-serif;
 text-align: center;
  }
.overlay {
 background-color: rgba(255, 255, 255, 0.5);
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
}


header {
 background-color: #000000;
 color: white;
 padding: flex;
 text-align: center;

}
.li {
  text-align: center;
  max-width: 100dvw;

}
.li a{
text-align: center;
float: center;
order:1;
flex-grow:1;
font-size: auto;
}
.ul1{ width: 100%;
border: 1px solid #c2c2c2;
display:table;
white-space:nowrap;
text-align:center;}


.logo {
display: flex;
align-items: center;
}
.logo img {
height: 50px;
margin-right: 10px;
}
nav li {
margin: 0 10px;
}
.li a{
text-align: center;
float: center;
order:1;
flex-grow:1;
font-size: auto;
}
.user {
display: flex;
align-items: center;
font-size: 1vw;
}

.user span {
margin-right: 10px;
}

.user a {
margin-left: 10px;
}
.header-left {
display: grid;
flex-direction: column;
align-items: center;
justify-content: center;
width: fill;
height: auto;
text-align: center;

}

.header-right {
display: grid;
flex-direction: column;
}


.headnav {
background-color: lightskyblue;
color: auto;
padding: 3px 5px;
border-radius: 5px;
text-decoration: none;
margin: 5px;
display: inline-block;
color: auto;
font-weight: bold;
}

.headnav2 {
background-color: lightseagreen;
color: auto;
padding: 4px 12px;
border-radius: 5px;
text-decoration: none;
margin: 5px;
display: inline-block;
font-weight: bold;
}
.copyright {
 margin: 5px;
 font-size: 8px;
}

section {
    text-align: justify;
  margin: 10;
  }
  

.container2 {
    display: flex;
    max-width: 1000px;
    justify-content: space-between;
    margin: 1px auto;
    padding: 30px;
    background-color:#a6f5bf00;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    font-size: medium;
    font-family: 'Lucida Sans';
    
  }
  .bin-result {
    display: none;
    margin-top: 2px;
}

.check-another-bin, .buy-button {
    margin-top: 20px;
    cursor: pointer;
    color: blue;
}
.buy-button {
    background-color: rgb(1, 90, 1);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin: 2px;
}
.buy-button:hover {
  background-color: #1f635c;
}
.check-button {
    background-color: rgb(3, 75, 3);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 10px;
    padding: 1px;
    justify-items: center;
    margin-left: 10px;
    margin-right: 10px;
    
  }
  
  .product {
    background-color: #d9faf3;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
  }
  .product li{
    font-size: small;
    font-style: italic;
    color: #071507;
    margin: 0;
  }
  .product h2 {
    font-size: medium;
  }
  .product p{
    font-size: smaller;
    font-weight: bolder;
    margin: 1px;
    
  }
  
  .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .product-image {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
  }
  
  .product-details {
    padding: 10px;
    text-align: left;
  }
  
  .product-title {
    margin-top: 0;
    font-size: smaller;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
  }
  
  .product-price {
    font-size: smaller;
    color: #4caf50;
    margin-top: 5px;
  }
  
  .buy-now-btn {
    display: inline-block;
    background-color: #218124;
    color: #fff;
    padding: 3px 10px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin: 2px;
  }
  
  .buy-now-btn:hover {
    background-color: #45a097;
  }








footer {
  background-color: #000000;
  color: #f3eeee;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 0;
  font-size: 14px;
}
footer img{
  max-width: 30px;
  max-height: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}
footer img:hover {
  transform: scale(1.05);
}