@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,700;1,9..144,700&display=swap");
body {
  font-size: 0.875em;
  margin: 0;
  padding: 0;
  color: hsl(228, 12%, 48%);
  line-height: 1.5;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 32px 16px;
  max-width: 1440px;
  background-color: hsl(30, 38%, 92%);
  height: 100vh;
}
@media screen and (max-width: 425px) {
  .container {
    width: 100%;
  }
}

h1 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: hsl(212, 21%, 14%);
  font-size: 2.5em;
  line-height: 1;
  margin: 0;
}

p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0;
}

.card {
  display: flex;
  border-radius: 20px;
  background-color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 425px) {
  .card {
    flex-direction: column;
  }
}
@media screen and (min-width: 426px) {
  .card {
    flex-direction: row;
    width: 600px;
  }
}
.card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  padding: 32px;
}
@media screen and (min-width: 426px) {
  .card__content {
    flex: 1 1;
  }
}
@media screen and (min-width: 430px) {
  .card section {
    width: 50%;
  }
}
.card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
}
.card__image--mobile {
  max-inline-size: 100%;
  border-radius: 20px 20px 0 0;
}
@media (min-width: 426px) {
  .card__image--mobile {
    display: none;
  }
}
.card__image--desktop {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 425px) {
  .card__image--desktop {
    display: none;
  }
}
.card__price {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin: 0;
}
.card__price--actual {
  text-decoration: line-through;
}
.card__price--discount {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 2.5em;
  line-height: 1.2;
  color: hsl(158, 36%, 37%);
}
.card__button {
  color: hsl(0, 0%, 100%);
  background-color: hsl(158, 36%, 37%);
  border: none;
  border-radius: 10px;
  padding: 16px 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.card__button:hover {
  background-color: hsl(158, 42%, 18%);
}/*# sourceMappingURL=style.css.map */