body {
  font-family: sans-serif;
  background: #f0f8ff;
  padding: 20px;
}
h1 {
  text-align: center;
}
#pokemon-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.pokemon-card {
  background: white;
  border-radius: 8px;
  padding: 10px;
  width: 150px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.pokemon-card img {
  width: 100px;
}
.pokemon-card a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.types {
  font-size: 0.9em;
  color: #666;
}
