.grid-pokemon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}
.grid-pokemon > * {
  margin: 10px;
  border-radius: 25px;
  border: 1px solid black;
  padding: 10px;
  text-align: center;
}
