@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(30, 38%, 92%);
  margin: clamp(1rem, 2vw, 3rem);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.product-container {
  margin: 0 auto;
}
.product-container .wrapper {
  padding: clamp(2rem, 2vw, 1.5rem);
  background-color: hsl(0, 0%, 100%);
}
.product-container .product-image {
  border-radius: 8px 8px 0 0;
  width: 100%;
  min-width: 288px;
  max-width: 100%;
}
.product-container .category {
  color: hsl(0, 0%, 50%);
  text-transform: uppercase;
}
.product-container .product-name {
  margin-top: 1.25rem;
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
}
.product-container .desc {
  margin-top: 1.25rem;
  color: hsl(0, 0%, 50%);
}
.product-container .price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-family: "Fraunces", serif;
}
.product-container .price h1 {
  color: hsl(158, 36%, 37%);
}
.product-container .price p {
  color: hsl(0, 0%, 50%);
}
.product-container .button {
  padding: 15px 15px;
  text-align: center;
  border-radius: 9px;
  margin-top: 1rem;
  background-color: hsl(158, 36%, 37%);
}
.product-container .button a {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  font-weight: 700;
}
.product-container .button:hover {
  background-color: hsl(158, 42%, 18%);
  cursor: pointer;
}

@media (min-width: 768px) {
  .product-container {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
  }
  .product-container .product-image {
    border-radius: 8px 8px 0 0;
    width: 100%;
    min-width: 288px;
    max-width: 100%;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .product-container .product-image {
    border-radius: 8px 0 0 8px;
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 768px) {
  picture,
  .wrapper {
    flex: 1;
  }
  picture {
    display: flex;
  }
  .category {
    margin-top: 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
