* {
  box-sizing: border-box;
}
body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Montserrat;
  background-color: hsl(30, 38%, 92%);
  font-weight: 500;
}
main {
  margin: 1.5rem 1rem;
  border-radius: 1rem;
  background-color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
main img {
  width: 100%;
  height: 100%;
}
section {
  padding: 1.5rem;
  padding-top: 1rem;
}
section > span:first-child {
  color: hsl(228, 12%, 48%);
  letter-spacing: .2rem;
  text-transform: uppercase;
  font-size: small;
}
section h1 {
  font-family: Fraunces;
  margin: 1rem 0;
  margin-top: .8rem;
  color: hsl(212, 21%, 14%);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}
section p {
  color: hsl(228, 12%, 48%);
  font-size: small;
  line-height: 1.4rem;
}
.price {
  display: flex;
  align-items: center;
}
.price span {
  margin-right: min(1.5rem, 4%);
}
.price .discounted-price {
  color: hsl(158, 36%, 37%);
  font-weight: 700;
  font-size: 2rem;
  font-family: Fraunces;
}
.price .original-price {
  color: hsl(228, 12%, 48%);
  font-size: small;
  text-decoration: line-through;
}
button {
  width: 100%;
  margin-top: 1rem;
  padding: .8rem;
  color: white;
  background-color: hsl(158, 36%, 37%);
  border: none;
  border-radius: .5rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
button:hover, button:focus {
  background-color: hsl(158, 42%, 18%);
}
button img {
  width: 1rem;
  margin-right: .5rem;
}

@media (min-width: 767px) {
  main {
    flex-direction: row;
    max-width: 650px;
    margin: 1rem auto;
  }
  main > * {
    width: 50%;
  }
}