#pokeCards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pokeCard {
  width: 200px;
  height: 200px;
  margin: 10px;
  border: 1px solid black;
  border-radius: 10px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal img {
  width: 100%;
  height: 100%;
}