@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

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

:root {
  --green-500: hsl(158, 36%, 37%);
  --green-700: hsl(158, 42%, 18%);
  --black: hsl(212, 21%, 14%);
  --grey: hsl(228, 12%, 48%);
  --cream: hsl(30, 38%, 92%);
  --white: hsl(0, 0%, 100%);
}

body {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}

.card {
  width: 600px;
  border-radius: 5px;
  background-color: var(--white);
  display: flex;
  gap: 30px;
  overflow: hidden;
}

.container {
  width: 70%;
  margin: 0 auto;
  padding: 30px 30px 0px 0px;
}

.perfume {
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

.img {
  width: 70%;
  border-radius: inherit;
  height: 450px;
  object-fit: cover;
}

.title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: black;
  font-size: 30px;
  width: 80%;
  margin-bottom: 25px;
}

.information {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 500;
  width: 90%;
}

.prices {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.current_price {
  font-size: 30px;
  font-family: "Fraunces", serif;
  color: var(--green-500);
  font-weight: 700;
}

.normal_price {
  font-family: "Fraunces", serif;
  color: var(--grey);
  font-weight: 500;
  font-size: 14px;
  text-decoration: line-through;
}

.button {
  width: 100%;
  border: none;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
  background-color: var(--green-500);
}

.button:hover {
  background-color: var(--green-700);
}
