body {
  background-color: rgba(246, 1, 217, 0.387);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}

.pokemon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 200px;
}

.pokemonName {
  text-transform: capitalize;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  color: white;
  margin: 0;
}

.pokemonImg {
  width: 100%;
}

.pokemonBtn {
  padding: 10px;
  border-radius: 10px;
  background-color: orange;
  color: white;
  font-weight: bold;
  margin-top: 20px;
}

.loading,
.error {
  margin-top: 40px;
  color: white;
  font-weight: bold;
}
