.container > h1 {
  text-align: center;
  margin: 25px 0 50px;
  box-shadow: 0px 0px 5px black;
  padding: 50px 0;
}

.products {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product {
	background-color: var(--bg-grey);
	border-radius: 25px;
	flex-basis: 22%;
	color: white;
	text-align: center;
  margin-bottom: 50px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-blue);
  font-size: 15px;
  transition: .5s;
  cursor: pointer;
}

.product:hover {
  background-color: var(--primary-blue);
}

@media (max-width: 899px) {
  .product {
    flex-basis: 30%;
  }

  .container > h1 {
    margin: 100px 0 50px;
  }
}

@media (max-width: 599px) {
  .product {
    flex-basis: 48%;
  }
}