@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Fugaz+One&family=Montserrat:wght@100&family=Nunito:wght@200&display=swap");
/* COLOR */
/* border */
/* FONT-FAMILY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(30, 38%, 92%);
}
body article.card {
  max-width: 600px;
  max-height: 600px;
  display: flex;
  border-radius: 5px;
  justify-content: center;
  margin: 0px 10px;
}
body article.card section.card-left {
  width: 50%;
}
body article.card section.card-left .perfume-desktop {
  width: 100%;
  height: 100%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
body article.card section.card-left .perfume-mobile {
  display: none;
}
body article.card section.card-right {
  width: 50%;
  padding: 2rem;
  background-color: white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body article.card section.card-right .card-right-header > p {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: hsl(228, 12%, 48%);
  letter-spacing: 5px;
}
body article.card section.card-right .card-right-header .card-right-h1 {
  font-size: 2rem;
  margin-top: 20px;
  font-family: "Fraunces", serif;
  color: hsl(212, 21%, 14%);
  font-family: "Fraunces", serif;
}
body article.card section.card-right .card-right-p {
  font-family: "Montserrat", sans-serif;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
}
body article.card section.card-right .price {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
body article.card section.card-right .price .price-sell {
  margin-right: 20px;
  font-size: 2rem;
  color: hsl(158, 36%, 37%);
  font-family: "Fraunces", serif;
}
body article.card section.card-right .price .price-original {
  text-decoration: line-through;
  color: hsl(228, 12%, 48%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
body article.card section.card-right button.button {
  margin-top: 20px;
  width: 100%;
  height: 45px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-color: hsl(158, 36%, 37%);
  color: white;
  border: none;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body article.card section.card-right button.button:hover {
  background-image: linear-gradient(rgb(27, 64, 49) 0 0);
}
body article.card section.card-right button.button .button-name {
  margin-left: 10px;
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (max-width: 475px) {
  body article.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 10px;
  }
  body article.card section.card-left {
    min-width: 300px;
  }
  body article.card section.card-left img.perfume-mobile {
    display: block;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  body article.card section.card-left .perfume-desktop {
    display: none;
  }
  body article.card section.card-right {
    min-width: 300px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}/*# sourceMappingURL=mobile.css.map */