.products
{
    margin-top:3rem;
}

.products__title {
  color: var(--color-green);
}

.products__container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.products__product {
  padding: 1rem;
  background-color: white;
  border-radius: 0.25rem;
}

.products__product__image {
  width: 100%;
  border-radius: 0.25rem;
}

.products__product__title {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.products__product__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
