html {
  font-size: 14px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}
body {
  display: grid;
  place-content: center;
  width: 100%;
  padding: 25px 16px;
  background-color: hsl(30, 38%, 92%);
}
.wrapper {
  display: grid;
  width: 100%;
  max-width: 540px;
  border-radius: 8px;
  background-color: #fff;
}
.image_container {
  height: 240px;
  width: 100%;
}
.image {
  height: 100%;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  background-image: url('./images/image-product-mobile.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  height: 100%;
  width: 100%;
  padding: 30px;
}
.category {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: hsl(228, 12%, 48%);
}
h1 {
  font-size: 2rem;
  font-family: 'Fraunces', serif;
  color: hsl(212, 21%, 14%);
}
.description {
  color: hsl(228, 12%, 48%);
}
.price_wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.live_price {
  color: hsl(158, 36%, 37%);
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  margin-right: 1.4rem;
}
.default_price {
  color: hsl(228, 12%, 48%);
  text-decoration: line-through;
}
button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-radius: 8px;
  background-color: hsl(158, 36%, 37%);
  cursor: pointer;
}
button:hover {
  background-color: #1a4031;
}
label {
  font-size: 1rem;
  margin-left: 1rem;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
}
@media (min-width: 768px) {
  body {
    min-height: 100vh;
  }
  .wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .image_container {
    height: 100%;
  }
  .image {
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    background-image: url('./images/image-product-desktop.jpg');
  }
}
