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

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

.wrapper {
  background-color: white;
  height: 460px;
  width: 600px;
  border-radius: 12px;
  display: flex;
  margin: auto;
}

.wrapper #product-img {
  height: 460px;
  width: 300px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.text-wrap {
  padding: 30px;
}

.text-wrap .perfume {
  font-family: "Montserrat", sans-serif;
  color: hsl(228, 12%, 48%);
}
.text-wrap .heading {
  font-family: "Fraunces", sans-serif;
  margin: 15px auto 20px auto;
}
.text-wrap .para {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 25px;
  color: hsl(228, 12%, 48%);
  margin-bottom: 20px;
}
.text-wrap .d-price {
  color: hsl(158, 36%, 37%);
  font-family: "Fraunces", sans-serif;
  font-size: 30px;
  font-weight: 800;
  display: inline;
}
.text-wrap .o-price {
  color: hsl(228, 12%, 48%);
  text-decoration: line-through;
  position: relative;
  top: -5px;
  margin-left: 15px;
}
.text-wrap .addToCart {
  width: 100%;
  padding: 15px;
  margin: 20px auto;
  background-color: hsl(158, 36%, 37%);
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  vertical-align: middle;
  cursor: pointer;
}
.text-wrap .addToCart svg {
  position: relative;
  left: -7px;
  top: 3px;
}
.text-wrap .addToCart:hover {
  background-color: hsl(159, 37%, 18%);
}

@media (max-width: 600px) {
  body {
    height: 100%;
  }
  .wrapper {
    display: block;
    height: fit-content;
    width: 85vw;
    margin: 30px auto 10px auto;
  }
  .wrapper #product-img {
    height: auto;
    width: 100%;
    border-bottom-left-radius: 0;
    border-top-right-radius: 12px;
  }
  .text-wrap {
    padding: 20px;
  }
  .text-wrap .perfume {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .text-wrap .heading {
    margin: 10px 0 15px 0;
  }
  .text-wrap .para {
    font-size: 13px;
  }
  .text-wrap .addToCart {
    margin: 15px auto 5px auto;
  }
}

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