:root {
  --dark-cyan: hsl(158, 36%, 37%);
  --cream: hsl(30, 38%, 92%);
  --dark-blue: hsl(212, 21%, 14%);
  --grayish-blue: hsl(228, 12%, 48%);
  --white: hsl(0, 0%, 100%);
  --font-montserrat: "Montserrat", sans-serif;
  --font-fraunces: "Fraunces", serif;
}

* {
  box-sizing: border-box;
}
/* TYPOGRAPHY */

.perfume {
  font-family: var(--font-montserrat);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4.9px;
  color: var(--grayish-blue);
}

h1 {
  font-family: var(--font-fraunces);
  font-size: 2rem;
  font-weight: 700px;
  line-height: 2rem;
  color: var(--dark-blue);
}

.description {
  font-family: var(--font-montserrat);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--grayish-blue);
}

.new-price {
  font-family: var(--font-fraunces);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-cyan);
}

.old-price {
  font-family: var(--font-montserrat);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: line-through;
  color: var(--grayish-blue);
}

button {
  font-family: var(--font-montserrat);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  background-color: var(--dark-cyan);
}

/* LAYOUT */

body {
  background-color: var(--cream);
  margin: 0;
}

main {
  padding: 1.75rem 1rem;
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.product-card {
  background-color: var(--white);
  max-width: 686px;
  border-radius: 10px;
  overflow: hidden;
}

.product-image {
  display: block;
  max-width: 100%;
}

.product-info {
  padding: 1.6875rem 1.5625rem 1.5rem;
}

h1 {
  margin-top: 0.9375rem;
  margin-bottom: 1.125rem;
}

.description {
  margin-bottom: 1.5rem;
  line-height: 1.4375rem;
}

.prices {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

button {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  border: 0;
}

@media (min-width: 768px) {
  body {
    height: 100vh;
    padding: 0;
  }

  main {
    height: 100vh;
  }

  .product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-width: 600px;
    margin: 50px;
  }

  .product-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 33px 33px 33px;
  }

  h1 {
    font-size: 2.4rem;
    line-height: 2.3rem;
    margin-bottom: 0;
  }

  .perfume {
    font-size: 0.85rem;
  }

  .description {
    font-size: 1rem;
    line-height: 1.5375rem;
    margin-bottom: 1rem;
  }

  .new-price {
    font-size: 2.4rem;
  }

  .old-price {
    font-size: 0.9rem;
  }

  button {
    font-size: 1rem;
    cursor: pointer;
  }

  button:hover {
    background: #1a4031;
  }
}
