/* Primary Colors */
/* Neutral Colors */
* {
  margin: 0;
  padding: 0;
}

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

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

body {
  font-family: "Montserrat";
  background-color: hsl(30, 38%, 92%);
  font-size: 1em;
}

p {
  font-size: 14px;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: hsl(0, 0%, 100%);
  border-radius: 10px;
  margin: 20px;
  font-family: Fraunces;
}

.card-description {
  margin: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card-description p {
  font-family: montserrat;
  line-height: 20px;
  color: hsl(228, 12%, 48%);
}

.prices {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}

.picture {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}

#perfume_image {
  width: 100%;
  height: 100%;
}

#discount-price {
  color: hsl(158, 36%, 37%);
  font-size: 2em;
  font-weight: 700;
}

#og-price {
  text-decoration: line-through;
  color: hsl(228, 12%, 48%);
}

#perfume {
  font-family: montserrat;
  color: hsl(228, 12%, 48%);
  font-weight: 500;
  letter-spacing: 5px;
}

.cart {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(158, 36%, 37%);
  width: 100%;
  margin: auto;
  color: hsl(0, 0%, 100%);
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  cursor: pointer;
}
.cart:hover {
  background-color: hsl(158, 42%, 18%);
}

/* Larger Screen Styles (600px <) */
@media (min-width: 600px) {
  .card {
    flex-direction: row;
    width: 800px;
    flex-basis: 50%;
    margin: 4rem auto;
  }
  h2 {
    font-size: 3rem;
  }
  h4 {
    font-size: 1rem;
  }
  p {
    font-size: 1.5rem;
  }
  #discount-price {
    font-size: 3rem;
  }
  #perfume {
    font-size: 1.3rem;
  }
  .picture {
    width: 50%;
    flex: 1;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
  }
  .card-description {
    width: 50%;
    flex: 1;
  }
  .card-description p {
    line-height: 2rem;
  }
  .cart {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=index.css.map */