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

body {
  background: hsl(30deg, 38%, 92%);
}

.container {
  width: 100%;
  height: 98vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-flex {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  width: 600px;
  height: auto;
  background: hsl(0deg, 0%, 100%);
  border-radius: 10px;
  box-shadow: 1rem;
}

.product {
  width: 300px;
  height: auto;
  border-radius: 10px 0 0 10px;
  filter: brightness(90%) contrast(110%);
}

.product-mobile {
  display: none;
}

.info {
  padding: 2rem;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: hsl(228deg, 12%, 48%);
  font-size: 13px;
  padding-bottom: 1.2rem;
}

h1 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: hsl(212deg, 21%, 14%);
  padding-bottom: 0.8em;
  line-height: 1em;
}

.about {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: hsl(228deg, 12%, 48%);
  font-size: 14px;
  padding-bottom: 2rem;
  line-height: 1.6em;
}

.prices {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.curPrice {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 32px;
  color: hsl(158deg, 36%, 37%);
  font-style: bold;
}

.oldPrice {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: hsl(228deg, 12%, 48%);
  margin-right: 40px;
  margin-top: 10px;
}

.addToCart {
  text-align: center;
  width: 100%;
  padding: 6%;
  outline: none;
  border: none;
  border-radius: 5px;
  background: hsl(158deg, 36%, 37%);
  color: hsl(0deg, 0%, 100%);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-top: 2em;
  transition-duration: 0s;
}

.addToCart:hover {
  transition-duration: 0.5s;
  background: hsl(156deg, 42%, 18%);
  cursor: pointer;
}

.addToCart:active {
  transition-duration: 0.2s;
  background: hsl(158deg, 50%, 5%);
  cursor: pointer;
}

.cartLogo {
  margin: 0 6px;
  transform: translateX(-5px) translateY(3px);
}

.attribution {
  font-family: "Calibri";
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228deg, 45%, 44%);
}

@media (max-width: 650px) {
  .product {
    display: none;
  }
  .product-mobile {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    filter: brightness(90%) contrast(110%);
  }
  .card-flex {
    flex-direction: column;
    width: 90%;
    height: auto;
  }
  .info {
    padding: 1.5rem;
  }
  h3 {
    padding-bottom: 1rem;
  }
  h1 {
    font-size: 1.9rem;
    padding-bottom: 1rem;
  }
  .about {
    padding-bottom: 1rem;
  }
  .oldPrice {
    margin-right: 90px;
    margin-top: 10px;
  }
  .addToCart {
    margin-top: 1rem;
    padding: 5%;
    border-radius: 8px;
  }
}/*# sourceMappingURL=style.css.map */