.products_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.products_list a {
  background-color: whitesmoke;
  color: black;
  width: 40%;
  border: solid 1px #2c2a2b;
  margin: 5px 10px;
  text-decoration: none;
}

.products_list a img {
  width: 100%;
}

.products_list a p {
  display: flex;
  justify-content: center;
}

@media (max-width: 800px) {
  .products_list a {
    width: 90%;
  }
}