body {
    background-color: #A76545;
    font-family: Arial, Helvetica, sans-serif;
}
header {
    width: 100%;
    background-color: #FCB454;
    border: 4px solid #945034;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    width: 90px;
}
nav ul {
    list-style-type: none;
    padding: 20px;
    display: flex;
}
nav ul li {
    padding-right: 20px;
}
nav ul li a {
    text-decoration: none;
    font-size: larger;
    color: #A55B4B;
}
nav ul li a:hover {
    color: #D98324;
    text-decoration-line: underline;
    text-underline-offset: 10px;
    text-decoration-color: orange;
}
#about {
    background-image: url(asset/gif\ img.gif);
    background-position: right;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    height: 75vh;
    padding: 40px;
    background-color: #E5D0AC;
}
#about h2 {
  margin-top: 50px;
  width: 50%;
  padding-left: 40px;
}
#about p {
  width: 50%;
  padding-left: 40px;
  line-height: 1.7em;
}
#product {
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    margin: 40px;
  }
  #product h2 {
    text-align: center;
    color: #C14600;
  }
  
  
  .card-product {
    width: 95%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
  }
  
  
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: auto;
    text-align: center;
    font-family: arial;
  }
  
  
  .price {
    color: grey;
    font-size: 22px;
  }
  
  
  .card button {
    border: none;
    outline: 0;
    padding: 12px;
    color: black;
    background-color: #854836;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
  }
  
  
  .card button:hover {
    opacity: 0.7;
  }

  #contact {
    width: 100%;
    display: flex;
    padding: 30px;
    border: 1px solid black;
  }
  .contact-text {
    align-items: center;
    padding-left: 70px;
    width: 50%;
  }
  .contact-text h4 {
    color: black;
  }
  .contact-text p {
    font-size: xx-large;
  }
  .contact-text button {
    padding: 8px 35px;
    background-color: grey;
    border: none;
  }
  .contact-text button:hover {
    background-color: grey;
    color: black;
    box-shadow: 3px 3px 20px white;
}
.contact-image {
  width: 50%;
}
.contact-image img {
  width: 60%;
}


  