* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(30, 38%, 92%);
  height: 100vh;
  font-family: "Montserrat", sans-serif;
}

.card {
  display: flex;
  background-color: hsl(0, 0%, 100%);
  border-radius: 15px;
  overflow: hidden;
  width: 600px;
}

.product-desktop {
  display: block;
  width: 50%;
}

.product-mobile {
  display: none;
}

.content {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.content h2 {
  color: hsl(212, 21%, 14%);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 5px;
}
.content h1 {
  color: hsl(212, 21%, 14%);
  font-family: "Fraunces", sans-serif;
  font-weight: 700;
}
.content p {
  color: hsl(228, 12%, 48%);
  font-size: 14px;
}
.content .prices {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Fraunces", sans-serif;
}
.content .prices .price {
  color: hsl(158, 36%, 37%);
  font-size: 30px;
  font-weight: bold;
}
.content .prices .off {
  text-decoration-line: line-through;
}
.content button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  gap: 20px;
  border-radius: 10px;
  border-style: none;
  background-color: hsl(158, 36%, 37%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.content button:hover {
  background-color: hsl(158, 42%, 18%);
}

@media (max-width: 600px) {
  .card {
    flex-direction: column;
    width: 90%;
  }
  .product-desktop {
    display: none;
  }
  .product-mobile {
    display: block;
    width: 100%;
  }
  .content {
    padding: 20px 25px;
    gap: 10px;
  }
  h2 {
    font-size: 15px;
  }
  h1 {
    font-size: 22px;
  }
  p {
    font-size: 7px;
  }
}/*# sourceMappingURL=style.css.map */