.header {
  background-color: #ff8989;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.header .caption {
  font-style: italic;
  font-weight: 500;
}

* {
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffe8e8;
  font-family: "Nunito Sans", sans-serif;
}
body .products {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 40px;
}
body .products .card {
  background-color: white;
  width: 240px;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
body .products .card img {
  width: 90%;
}
body .products .card button {
  font-size: 18px;
  background-color: #ff8989;
  border: none;
  padding: 8px;
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 8px;
}
body .products .sale-card {
  background-color: rgb(255, 191, 191);
  position: relative;
}
body .products .sale-card .sale-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-image: url(/sale-tag.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: white;
  font-size: 14px;
  padding: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: 900;
}
body .products .sale-card button {
  font-size: 18px;
  background-color: red;
  border: none;
  padding: 8px;
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 8px;
}/*# sourceMappingURL=styles.css.map */