body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
}

.container {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

h1 {
  color: #3498db;
}

#pokedex-list {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  gap: 20px;
}

.pokemon-card {
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}

.pokemon-name {
  font-size: 24px;
  margin-bottom: 10px;
}

.pokemon-type {
  color: #777;
  font-size: 16px;
}

.pokemon-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}