main .content-div .content div p:first-of-type, main .content-div .content > p:nth-of-type(2) {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  font-size: 2.3rem;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: hsl(30, 38%, 92%);
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 80%;
  width: 95%;
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.5rem;
}
main .img-div {
  width: 100%;
  height: 40%;
  border-radius: 0.5rem 0.5rem 0 0;
}
main .img-div img {
  object-fit: fill;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem 0.5rem 0 0;
}
main .content-div {
  width: 100%;
  height: 60%;
  display: flex;
  justify-content: center;
}
main .content-div .content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  width: 80%;
}
main .content-div .content > p:first-of-type {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: hsl(228, 12%, 48%);
}
main .content-div .content > p:nth-of-type(3) {
  color: hsl(228, 12%, 48%);
  font-size: 1.1rem;
}
main .content-div .content div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
main .content-div .content div p:first-of-type {
  color: hsl(158, 36%, 37%);
}
main .content-div .content div p:nth-of-type(2) {
  text-decoration: line-through;
  color: hsl(228, 12%, 48%);
  font-size: 0.9rem;
}
main .content-div .content button {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  background-color: hsl(158, 36%, 37%);
  border: none;
  color: hsl(0, 0%, 100%);
  border-radius: 0.5rem;
  width: 100%;
  padding: 1rem 0;
}
main .content-div .content button:hover, main .content-div .content button:active {
  background-color: hsl(158, 42%, 18%);
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  main {
    flex-direction: row;
    height: 55%;
    width: 75%;
    gap: 0;
  }
  main .img-div {
    height: 100%;
    border-radius: 0.5rem 0 0 0.5rem;
  }
  main .img-div img {
    border-radius: 0.5rem 0 0 0.5rem;
  }
  main .content-div {
    align-items: center;
    height: 100%;
  }
  main .content-div .content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 90%;
    width: 75%;
  }
}
@media screen and (min-width: 1024px) {
  main {
    flex-direction: row;
    width: 60%;
  }
}
@media screen and (min-width: 1440px) {
  main {
    flex-direction: row;
    width: 45%;
  }
}
@media screen and (min-width: 1450px) {
  main {
    flex-direction: row;
    width: 33%;
  }
}

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