html {
  font-family: monospace;
  box-sizing: border-box;
  font-size: 16px;
  background: #e3340d;
}

h1 {
  color: white;
}

.htmx-indicator {
  padding: 20px 0;
  text-align: center;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

header {
  padding: 30px 0;
  text-align: center;
}

.pokemon-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 10px;;
}
.poke-list-item {
  background: #F8FCF4;
  text-align: center;
  min-width: 250px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid white;
}

.pokemon-list h2 {
  text-transform: capitalize;
}
