/* Montserrat Font */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Fraunces Font */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

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

body {
  background-color: hsl(30, 38%, 92%);
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.container {
  display: flex;
  margin-inline: auto;
  overflow: hidden;

  background-color: hsl(0, 0%, 100%);
  border-radius: 0.5rem;

  width: 35rem;
  height: 25rem;
}

.perfume-picture {
  height: 25rem;
  width: auto;
}

.perfume-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.perfume-info {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-inline: auto;
  gap: rem;

  margin-top: 1rem;
}

.perfume-p {
  font-family: "Montserrat";
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 0.75rem;
}

.perfume-info h2 {
  font-family: "Fraunces";
  font-weight: 700;
  font-size: 2rem;
  line-height: 2rem;
}

#perfume-desc {
  font-family: "Montserrat";
  font-size: 0.85rem;
  line-height: 1.3rem;
}

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

#first-price {
  font-family: "Fraunces";
  color: hsl(158, 36%, 37%);
  font-weight: 700;
  font-size: 2rem;
}

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

.inside-button {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

#atc-button {
  font-family: "Montserrat";
  background-color: hsl(158, 36%, 37%);
  color: hsl(0, 0%, 100%);
  padding: 13px 20px;
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;

  text-align: center;
}

#atc-button:hover{
  background-color: hsl(158, 42%, 18%);
  cursor: pointer;
}




@media only screen and (max-width: 376px) {
  body{
    height: 110vh;
  }

  .container {
    display: flex;
    flex-direction: column;

    height: 40rem;
    width: 21.875rem;

    
  }

  .perfume-picture {
    height: 17rem;
    margin-inline: auto;
  }

  .perfume-picture img {
    width: 22rem;
    height: 17rem;

    object-fit: cover;
    margin-inline: auto;
  }

  .perfume-info {
    width: 90%;
    padding-top: 1rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #perfume-desc{
    font-size: .95rem;
  }

}
