.pokemons {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pokemon:hover{
  transform: scale(1.05);
}

.pokemon {
  display: flex;
  flex-direction: column;
  margin: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  color: #ffffff;
}
.name {
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 0.25rem;
}
.detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.types {
  padding: 0;
  margin: 0;
  list-style: none;
}
.type {
  color: #fff;
  padding: 0.25rem 0.5rem;
  margin: 0.25rem 0;
  font-size: 0.625rem;
  border-radius: 1rem;
  filter: brightness(1.1);
  text-align: center;
}
.number {
  color: #000;
  opacity: 0.6;
  text-align: right;
  font-size: 0.625rem;
}
.detail img {
  max-width: 100%;
  height: 70px;
}
.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
}
.pagination button {
  padding: 0.25rem 0.5rem;
  margin: 0.25rem 0;
  font-size: 0.625rem;
  color: #fff;
  background-color: #6c79db;
  border: none;
  border-radius: 1rem;
}
.identity{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
}
.pokemon a{
  text-decoration: none;
}
h1{
  text-align: center;
}
@media screen and (min-width: 380px) {
  .pokemons {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 576px) {
  .pokemons {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .pokemons {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
