html, body {
  margin: 0;
  height: 100%;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(212, 142, 195);
  padding: 20px;
  box-sizing: border-box;
}

.product-card {
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #f0bee4;
  padding: 20px;
  transition: transform 0.2s ease;
  max-width: 300px;
  text-align: center;
  border: 2px solid transparent;
}
.product-card__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.product-card__content {
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.62);
  border-radius: 12px;
}
.product-card__title {
  font-size: 1.5em;
  color: #213724;
  margin: 0 0 10px 0;
  text-align: center;
}
.product-card__description {
  font-size: 0.9em;
  color: #24410e;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  background: rgba(160, 224, 128, 0.62);
  color: #e9f1f8;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 140ms ease, filter 140ms ease;
  margin-top: 15px;
  color: #2b2a29;
  text-align: center;
}/*# sourceMappingURL=style.css.map */