
.content .pokemons {
  display: grid;
  grid-template-columns: 1fr;
}

.content .pokemon {
  margin: 0.5rem;
  padding: 1rem 0.5rem 0;
  color: white;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.content .pokemon__number {
  color: black;
  opacity: 0.3;
  align-self: flex-end;
}

.content .pokemon__name {
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 0.25em;
  text-transform: capitalize;
}

.content .pokemon__detail {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.content .pokemon__type {
  margin: 0.25rem 0;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  text-align: center;
  font-size: 0.625rem;
  text-transform: capitalize;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.247);
}

.content .pokemon__detail img {
  max-width: 100%;
  height: 100px;
  border-style: none;
  align-self: flex-end;
}

@media screen and (min-width: 380px) {
  .content .pokemons {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 576px) {
  .content .pokemons {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 992px) {
  .content .pokemons {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
