body {
  background-color: #f9f9f9;
  width: 100%;
  font-family: "Times New Roman", Times, serif;
  margin: 0;
}
header {
  background-color: #fff6f5;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 4px solid #fff6f5;
}
.logo {
  width: 200%;
}
.logo img {
  width: 100px;
}
.logo img:hover {
  transform: scale(0.8);
  transition: all 0.3s ease-in-out;
}
nav {
  background-color: #f5dbdf;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}
li {
  margin-right: 20px;
}
a {
  text-decoration: none;
  font-size: larger;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: rgb(0, 0, 0);
}
.hero img {
  width: 100%;
}
.hero-text {
  background-color: #fff6f5;
  color: #fec9d2;
  padding: 10px;
  text-align: center;
}
#about {
  background-image: url(./asset/catty.gif);
  background-position: right;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  height: 90vh;
  padding: 20px;
}
#about {
  background-image: url(./asset/);
  background-position: right;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  height: 75vh;
  padding: 40px;
  background-color: #fce5e1;
}
#about h2 {
  margin-top: 50px;
  width: 50%;
  padding-left: 60px;
}
#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: #f8a0a0;
}

.card-product {
  width: 95%;
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
}

.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: rgb(255, 224, 224);
  background-color: #000;
  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 #f8a0a0;
}
.contact-text {
  align-items: center;
  padding-left: 70px;
}
.contact-text h4 {
  color: #fa8a8a;
}
.contact-text p {
  font-size: xx-large;
}
.contact-text button {
  padding: 8px 35px;
  background-color: #f8a0a0;
  border: white;
}
.contact-text button:hover {
  background-color: #ffbec8;
  color: #f493a1;
  box-shadow: 3px 3px 12px #ffa7b4;
}
footer{
text-align: center;
padding: 12px;
background-color: #f5dbdf;
color: rgb(0, 0, 0);
}