html {
  height: 100%;
  margin: 0;
}
body {
  font-family: Montserrat;
  background-color: hsl(30, 38%, 92%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
}
p {
  font-size: 14px;
  opacity: 0.5;
  line-height: 1.5;
}
h1 {
  font-family: Fraunces;
  color: hsl(212, 21%, 14%);
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .main-card {
    flex-direction: column;
  }
  .image {
    height: 350px;
  }
  .image_full {
    object-fit: cover;
  }
}
.main-card {
  border-radius: 10px;
  max-width: 40em;
  background-color: white;
  overflow: hidden;
}
.image {
  width: 100%;
}
.image_full {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.image_mobile {
  display: none;
  border-radius: 10px 0px 0px 10px;
}
.container,
.main-card {
  display: flex;
}

.container {
  flex-direction: column;
  justify-content: center;
  width: 80%;
  padding: 0px 20px;
  text-align: left;
  margin: 10px;
}

.container p:first-child {
  text-transform: uppercase;
  margin-bottom: 5px;
  margin-top: 0;
}

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

#price-old {
  text-decoration: line-through;
  margin-left: 15px;
  font-size: 12px;
}

#price {
  color: hsl(158, 36%, 37%);
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  color: white;
  background-color: hsl(158, 36%, 37%);
  border: 0;
  border-radius: 10px;
  font-weight: 600;
  padding: 15px 0;
}
button img {
  margin-right: 10px;
  width: 15px;
}
button:hover {
  background-color: hsl(156, 42%, 18%);
  cursor: pointer;
}
