

body {
  background-color: #F7F7F7;
}

.products-list-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  row-gap: 31px;
  width: 100%;

  margin: auto;
  margin-bottom: 119px;

  .title-container {
    margin-top: 40px;
    margin-bottom: 0;

    h1 {
     margin-bottom: 5px;
   }
  }

}

.products-list {
  display: grid;
  width: 100%;
  max-width: 1000px;
  grid-template-columns: repeat(auto-fill, 300px);
  gap: 40px;
  justify-content: center;
  margin: auto;
  padding: 0px 20px;

  margin-bottom: 19px;
}

.product-not-found {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #6478ff;
  font-size: 24px;
}

@media screen and (min-width: 768px) {
  .products-list {
    margin-bottom: 40px;
    grid-template-columns: repeat(auto-fill, 290px);
  }
}
