
.products {
  background: #E5E5E5;
  padding: 1rem 0;
}

.title__container {
  display: flex;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.btn__product {
  background: #2a7ae4;
  border: 1px solid #2a7ae4;
  border-radius: 5px;
  color: #fff;
  margin-top: 1rem;
  padding: 1rem;
  transition: 600ms;
}

.btn__product:hover {
  background: #fff;
  color: #2a7ae4;
}

.starwar__container, 
.console__container,
.varity__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.product {
  margin: 1rem auto;
}

.product > img {
  width: 140px;
  height: 174px;
  border-radius: 5px;
  box-shadow: 5px 5px 5px #cccccc;
}

.product h5 p {
  margin-top: 1rem;
}

.icons__products {
  position: absolute;
  margin: .5rem auto;
}

.icons__products img {
  margin: 0 1rem;
  /* filter: drop-shadow(5px 5px 8px #000); */
  transition: 600ms;
}

/* Responsive Design */

/* tablet */

@media screen and (min-width: 767px) and (max-width: 1023px) {

  .products__container {
    display: flex;
    justify-content: center;
  } 

  .products__container, .product {
    margin: 1rem;
  }

  .icons__products img {
    filter: none;
  }
}

/* Desktop */

@media screen and (min-width: 1024px) {

  .products__container {
    padding: 1rem;
    justify-content: normal;
  }

  .title__container {
    justify-content: space-around;
    flex-direction: row;
    margin-top: 2rem;
  }

  .starwar__container, 
  .console__container,
  .varity__container {
    margin-top: 1rem;
  }

  .product {
    margin: 1rem;
  }

  .product > img {
    width: 154px;
    height: 174px;
  }

  .product > h5, p {
    margin-top: .5rem;
  }

  .btn__product {
    margin-top: 0;
  }

  .icons__products img:hover {
    transform: scale(1.2);
  }

}