body {
  background-color: brown;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin: 0%;
}
header {
 width: 100%;
 background-color: #ffffff;
 border: 4px solid purple;
 display: flex;
 justify-content: space-between;
}
.logo img {
  width: 120px;
  margin-left: 0px;
}
.logo img:hover{
  transform: scale(.9);
  transition: all .4s ease-in-out;
}

nav ul {
  list-style-type: none;
  padding: 30px;
  display: flex;
  margin-right: 40px;
}

nav ul li {
  padding-right: 20px;
}

nav ul li a {
  text-decoration: none;
  font-size: larger;
}
nav ul li a:hover{
  color: pink;
  text-decoration-line: underline;
  text-underline-offset: 10px;
  text-decoration-color: chartreuse;
}
#hero img{
  width: 100%;
}
#about {
  background-image:url(Desain\ tanpa\ judul.png);
  background-position: right;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  height: 85vh;
  padding: 50px;
  background-color: #fcfcfc;
}
#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;
}


