* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #F2EAE2;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

.main {
  margin: 0 auto;
  padding: 1.25em;
  min-width: 100%;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 1em;
  overflow: hidden;
}
.card__img {
  display: block;
  width: 100%;
  height: 240px;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  object-fit: cover;
}
.card__info {
  padding: 24px;
}
.card__product {
  margin: 0;
  color: #6C7289;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 15px;
}
.card__title {
  margin: 0;
  color: #1C232B;
  font-family: "Caprasimo", serif;
  font-weight: lighter;
  font-size: 2rem;
  line-height: 25px;
  letter-spacing: 0.7px;
  margin-bottom: 13px;
}
.card__description {
  margin: 0;
  color: #6C7289;
  font-size: 0.75rem;
  margin-bottom: 24px;
  line-height: 20px;
}
.card__price {
  display: flex;
  align-items: center;
}
.card__price--new {
  margin: 0;
  height: 20px;
  color: #3D8168;
  font-family: "Caprasimo", serif;
  font-weight: lighter;
  font-size: 2rem;
  letter-spacing: 0.7px;
  margin-right: 19px;
  margin-bottom: 17px;
}
.card__price--old {
  margin: 0;
  font-size: 0.75rem;
  color: #6C7289;
  text-decoration: line-through;
  margin-bottom: 17px;
}
.card__btn {
  display: inline-block;
  background-color: #3D8168;
  border-radius: 10px;
  padding: 15px 30px;
  text-decoration: none;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
}
.card__btn:hover {
  background-color: #1A4032;
}

@media (min-width: 768px) {
  .card {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 600px;
    height: 450px;
    margin: 175px auto;
  }
  .card__img {
    height: 100%;
    border-top-right-radius: 0;
  }
  .card__info {
    padding: 32px;
    height: 100%;
  }
  .card__product {
    margin-bottom: 20px;
  }
  .card__title {
    margin-bottom: 24px;
    line-height: 30px;
  }
  .card__description {
    margin-bottom: 29px;
    letter-spacing: 0.7px;
  }
  .card__price--new,
  .card__price--old {
    margin-bottom: 30px;
  }
}
.attribution {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  padding: 10px;
  font-size: 11px;
}

/*# sourceMappingURL=style.css.map */
