* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  background-color: rgba(246, 248, 252, 0.6235294118);
  background-image: url("../img/pokemon-chromebook-wallpaper.jpg");
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
}

.pokemons-content {
  height: 100vh;
  width: 100vw;
  background-color: white;
  padding: 1rem;
}
.pokemons-content .loadMoreButton {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
}
.pokemons-content .loadMoreButton button {
  background-color: #4c0d98;
  color: white;
  border: none;
  padding: 0.25rem 0.5rem;
  margin: 0.25rem 0;
  border-radius: 1rem;
  font-size: 0.625rem;
  width: 100px;
  height: 30px;
  cursor: pointer;
}
.pokemons-content .loadMoreButton button:hover {
  opacity: 0.8;
}
.pokemons-content .loadMoreButton button:active {
  opacity: 0.6;
}
.pokemons-content .title-pokedex-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.pokemons-content .title-pokedex-content h1 {
  margin: 20px;
}
.pokemons-content .title-pokedex-content img {
  width: auto;
  height: 42px;
}
.pokemons-content .list-pokemons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.pokemons-content .list-pokemons .normal {
  background-color: #a6a877;
}
.pokemons-content .list-pokemons .grass {
  background-color: #77c850;
}
.pokemons-content .list-pokemons .fire {
  background-color: #ee7f30;
}
.pokemons-content .list-pokemons .water {
  background-color: #678fee;
}
.pokemons-content .list-pokemons .electric {
  background-color: #f7cf2e;
}
.pokemons-content .list-pokemons .ice {
  background-color: #98d5d7;
}
.pokemons-content .list-pokemons .ground {
  background-color: #dfbf69;
}
.pokemons-content .list-pokemons .flying {
  background-color: #a98ff0;
}
.pokemons-content .list-pokemons .poison {
  background-color: #a040a0;
}
.pokemons-content .list-pokemons .fighting {
  background-color: #bf3029;
}
.pokemons-content .list-pokemons .psychic {
  background-color: #f65687;
}
.pokemons-content .list-pokemons .dark {
  background-color: #725847;
}
.pokemons-content .list-pokemons .rock {
  background-color: #b8a137;
}
.pokemons-content .list-pokemons .bug {
  background-color: #a8b720;
}
.pokemons-content .list-pokemons .ghost {
  background-color: #6e5896;
}
.pokemons-content .list-pokemons .steel {
  background-color: #b9b7cf;
}
.pokemons-content .list-pokemons .dragon {
  background-color: #6f38f6;
}
.pokemons-content .list-pokemons .fairy {
  background-color: #f9aec7;
}
.pokemons-content .list-pokemons .pokemon {
  margin: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  color: white;
}
.pokemons-content .list-pokemons .pokemon .number {
  color: rgba(88, 82, 82, 0.764);
  text-align: right;
  font-size: 0.625rem;
}
.pokemons-content .list-pokemons .pokemon .name {
  color: white;
  font-weight: bold;
  margin-bottom: 0.25rem;
  text-transform: capitalize;
}
.pokemons-content .list-pokemons .pokemon .details {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.pokemons-content .list-pokemons .pokemon .details .list-types {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pokemons-content .list-pokemons .pokemon .details .list-types .type {
  color: white;
  text-align: center;
  padding: 0.25rem 0.5rem;
  margin: 0.25rem 0;
  font-size: 0.625rem;
  border-radius: 1rem;
  filter: brightness(1.1);
}
.pokemons-content .list-pokemons .pokemon img {
  max-width: 100%;
  height: 120px;
}/*# sourceMappingURL=global.css.map */