@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Montserrat:wght@500;700&display=swap");
html, body {
  background-color: hsl(30deg, 38%, 92%);
  font-family: "Fraunces", serif;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 85vh;
  max-width: 400px;
  min-width: 330px;
  overflow: hidden;
  background-color: hsl(0deg, 0%, 100%);
  border-radius: 10px;
  margin: 1.5rem;
}

.img {
  width: 100%;
  height: 35%;
  background-image: url("../images/image-product-mobile.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.description {
  padding: 1.5rem;
}
.description h1 {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5rem;
}
.description h2 {
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  color: hsl(212deg, 21%, 14%);
  line-height: normal;
}
.description h1, .description h2, .description p {
  margin-bottom: 0.5rem;
}
.description .center {
  display: flex;
  align-items: center;
}
.description strong, .description strike {
  display: inline-block;
  margin-bottom: 1rem;
}
.description strong {
  font-size: 2rem;
  font-family: "Fraunces", serif;
  margin-right: 1rem;
  color: hsl(158deg, 36%, 37%);
}
.description button {
  justify-content: center;
  border: 0;
  width: 100%;
  font-weight: 700;
  color: hsl(0deg, 0%, 100%);
  padding: 1rem 2rem;
  border-radius: 10px;
  background-color: hsl(158deg, 36%, 37%);
}
.description button:hover {
  filter: brightness(80%);
  cursor: pointer;
}
.description svg {
  display: inline-block;
  margin-right: 1rem;
}
.description h1, .description p, .description strike {
  color: hsl(228deg, 12%, 48%);
}

@media only screen and (min-width: 768px) {
  .box {
    flex-direction: row;
    min-height: 50%;
    max-width: 720px;
  }
  .img {
    min-width: 54%;
    height: 100%;
    background-image: url("../images/image-product-desktop.jpg");
  }
  .description {
    min-width: 46%;
    padding: 2rem;
  }
}