body {
    background-color:beige;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    
}
header {
    width: 100%;
    background-color: burlywood;
    border: 2px solid white;
    border-bottom: 4px solid ghostwhite;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-button {
  display: none;
}


.product-button a button {
  padding: 12px 25px;
  background-color: #439b10;
  color: #ffffff;
  border: none;
  border-radius: 25px 0;
}


.product-button a button:hover {
  background-color: #f1ea12;
  color: #31511e;
  box-shadow: 2px 2px 12px #439b10;
}

nav {
  display: flex;
  align-items: center;
}



.logo img {
    width: 100px;
    margin-left: 40px;
}
.logo img:hover {
    transform: scale(.8);
    transition: all .4 ease-in-out;
}

nav ul {
    list-style-type: none;
    padding: 20px;
    display: flex;
    margin-right: 40px;
}
nav ul li {
    padding-right: 20px;
}
nav ul li a {
    text-decoration: none;
    font-size: larger;
    color: chocolate
}
nav ul li a:hover {
    color: wheat;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-color: brown(235, 242, 30) ;
    transform: scale(.8);
    transition: all.4 ease-in-out;
}
#hero img {
    width: 100%;
}

.project {
    width: 90%;
    margin: 20px auto;
    border: 1px solid rgb(255, 166, 0);
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.project img {
    width: 40%;
}
.project img:hover {
    transform: scale(.8);
    transition: all.3s ease-in-out;
    box-shadow: 15px 15px 15px grey; 
}
.about {
    text-align: center;
    margin: 100px auto;
    font-family: 'Times New Roman', Times, serif;
}
.about h1 {
    color: chocolate; }

.about h2 {
    color: darkslategrey;
}
.about h3 {
    color: chocolate;
}

.about {
    background-image: url(asset/Untitled\ design\ \(3\).png);
    background-position: right;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    height: 28vh;
    padding: 28px;
    background-color: burlywood;
  }
  #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: #344CB7;
  }
  
  
  .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;
  }
  
  .card:hover {
    transform: scale(.9);
    transition: all .4s ease-in-out;
  }
  
  .price {
    color: grey;
    font-size: 22px;
  }
  
  
  .card button {
    border: none;
    outline: 0;
    padding: 12px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
  }
  
  
  .card button:hover {
    opacity: 0.7;
  }

  #product {
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    margin: 40px;
  }
  
  
  #product h2 {
    text-align: center;
    color: #344CB7;
  }
  
  
  .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: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
  }
  
  
  .card button:hover {
    opacity: 0.7;
  }

.WA {
    background-image: url(asset/);
    background-position: right;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    height: 10vh;
    padding: 10px;
    background-color: burlywood;
    
}
  
  footer p {
  text-align: center;
  margin-top: 100px;
  padding: 30px;
  background-color: orange;
  }

  @media screen and (max-width: 675px) {
    nav ul {
      display: none;
    }
    .product-button {
      display: block;
    }
  
  
    #product {
      margin-top: 650px;
    }
    .card-product {
      width: 80%;
      border: none;
    }
    footer {
      border-radius: 0;
    }
  }
  
  
  

