:root {
  --primary-color: #01a5aa;
}

html,
body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  height: 100%;
  background-color: #fff;
  background-size: contain;
  font-family: 'ManRope-Regular', Arial, Helvetica, sans-serif;
  font-size: 14px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.header {
  text-align: center;
  padding: 36px 36px 80px;
  background-image: linear-gradient(
    to bottom,
    #eaf8f8,
    #eaf8f8,
    #eaf8f8,
    rgb(253, 231, 210)
  );
  border-bottom-left-radius: 50% 15%;
  border-bottom-right-radius: 90% 20%;
}

.logo-colored {
  width: 200px;
  height: auto;
  margin: 32px auto;
}

.header-title {
  font-size: 38px;
  font-family: 'ManRope-Extrabold';
  letter-spacing: 1px;
  color: var(--primary-color);
}

.header-description {
  font-size: 15px;
  color: var(--primary-color);
  line-height: 20px;
  text-align: justify;
  margin: 10px auto;
  max-width: 750px;
}

.main {
  padding: 56px 12px;
  text-align: center;
}

.main-title {
  font-size: 32px;
  font-family: 'ManRope-Bold';
  letter-spacing: 1px;
  color: var(--primary-color);
  border: 2px dashed #000000;
  padding: 8px;
  margin-bottom: 16px;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 12px auto;
  max-width: 750px;
}

.product-container {
  flex-basis: calc(100% / 2);
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
}

@media (max-width: 470px) {
  .product-container {
    flex-basis: 100%;
  }

  .product {
    padding: 20px 20px;
  }
}

.product-placeholder {
  background-color: #eaf8f8;
  padding-top: 70%;
  width: 100%;
  margin-bottom: 4px;
  min-height: 135px;
  min-width: 190px;
}

.product-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--primary-color);
}
