body {
  background-color: #ccc;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}
.page {
  position: relative;
  text-align: center;
}
.page__search {
  padding-top: 10px;
}
.page__error {
  position: absolute;
  padding: 5px;
  color: #fff;
  background-color: #f44336;
}
.pokemons {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pokemons__item {
  display: inline-flex;
  margin: 10px;
}
.pokemon {
  position: relative;
  z-index: 20000;
  overflow: hidden;
  background-color: #eee;
  cursor: pointer;
}
.pokemon__sprite {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  border: none;
  background-color: initial;
  background-position: 50%;
  background-repeat: no-repeat;
}
.pokemon,
.pokemon__sprite {
  width: 140px;
  height: 140px;
}
.pokemon__name {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-size: 14px;
  pointer-events: none;
}
@media (min-width: 992px) {
  .pokemon,
  .pokemon__sprite {
    width: 160px;
    height: 160px;
  }
}
/*# sourceMappingURL=main.9120f817.chunk.css.map */
