body {
  font-family: monospace;
}

header > img {
  width: 92px;
}

section.pokedex {
  background-color: blueviolet;
  /* height: 70000px; */
  width: 80%;
  margin: 0 auto;
  padding: 1em;
  border-radius: 1em;
  margin-top: 10px;
  border: 7px solid rgb(97, 6, 97);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-end;
  /* align-content: center; */
}

.pokedex > .pokemon {
  border: 1px solid black;
  background-color: red;

  width: 177px;
  padding: 0.5em;
  border-radius: 1em;
  /* margin-right: 20px; */
  /* margin-bottom: 20px; */
  order: 40;
  /* flex-basis: 177px; */
}

.pokedex > .pokemon > img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.pokemon.rebelde {
  background-color: rebeccapurple;
  order: 33;

  align-self: stretch;
}
.pokemon.superrebelde {
  background-color: aquamarine;
  order: 35;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2em;
}

.cachito {
  display: flex;
  flex-direction: column;
  align-items: center;
}
