* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: hsl(30, 38%, 92%);
  color: hsl(212, 21%, 14%);
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 600px;
  display: flex;
}

.image {
  width: 50%;
}
.image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.card {
  width: 50%;
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0 2rem;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.title {
  text-transform: uppercase;
  font-weight: 500;
  opacity: 50%;
  letter-spacing: 7px;
}
h1 {
  text-transform: capitalize;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 32px;
}
.paragraph {
  line-height: 1.6;
  text-transform: capitalize;
  opacity: 50%;
}
.price {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: "Fraunces", serif;
}
.new-price {
  font-size: 2em;
  font-weight: 700;

  color: hsl(158, 36%, 37%);
}
.btn {
  text-decoration: none;
  text-transform: capitalize;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  display: flex;
  justify-content: center;
  gap: 10px;
  background-color: hsl(158, 36%, 37%);
  padding: 1rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.btn:hover {
  background-color: hsl(158, 36%, 37%);
  background-color: hsl(228, 12%, 48%);
}
