* {
  margin: 0;
  padding: 0;
}

body {
  background: hsl(30, 38%, 92%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  width: 50vw;
}

.cell-1 img {
  width: 100%;
  height: 100%;
  border-radius: 10px 0 0 10px;
}

.cell-2 {
  background: hsl(0, 0%, 100%);
  border-radius: 0 10px 10px 0;
  padding: 2em;
  color: hsl(228, 12%, 48%);
}

#perfume {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  padding: 5px;
}

.cell-2 h1 {
  font-family: "Fraunces", sans-serif;
  font-weight: 700;
  color: hsl(212, 21%, 14%);
  font-size: clamp(2em, 4vw, 3em);
  line-height: 1;
  margin: 10% 0;
}

.cell-2 p {
  font-size: clamp(1em, 1.2vw, 3em);
  line-height: 1.5;
  margin: 10% 0;
}

#money {
  display: inline-block;
  color: hsl(158, 36%, 37%);
  font-family: "Fraunces", sans-serif;
  font-weight: 700;
  font-size: clamp(2em, 3vw, 4em);
  padding: 20px 20px 20px 0;
}

button {
  width: 100%;
  padding: 20px;
  border: none;
  color: hsl(0, 0%, 100%);
  background: hsl(158, 36%, 37%);
  border-radius: 10px;
  font-size: clamp(1em, 1.2vw, 3em);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-top: 5%;
  cursor: pointer;
}

button:hover {
  background: hsl(158, 42%, 18%);
}

button img {
  position: relative;
  right: 5%;
  scale: 1.1;
}

@media (max-width: 1024px) {
  .container {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .container {
    width: 75%;
  }
}
@media (max-width: 480px) {
  body {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .container {
    grid-template-columns: 1fr;
    width: 85vw;
  }

  .cell-1 img {
    content: url("../images/image-product-mobile.jpg");
    border-radius: 10px 10px 0 0;
  }
  .cell-2 {
    border-radius: 0 0 10px 10px;
  }
}