/* Tablet - min 600px */
@media (max-width: 600px){
    header{display: none;}
}

@media (min-width: 600px) {
.content #pokemonList {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-items: center;
  gap: 40px;
  }

}

@media (min-width: 900px) {
.content #pokemonList {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-items: center;
  gap: 60px;
  }

}