body {
  margin: 0;
  font-family: "Arial, sans-serif";
  background-color: linear-gradient(135deg, #f9f9f9, #e6e6e6);
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

h1 {
  color: #3b4cca;
  margin-bottom: 1rem;
  text-align: center;
}

.container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10rem;
}

.card, #pokemonDetails {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.2s ease;
}
.card:hover, #pokemonDetails:hover {
  transform: translateY(-5px);
}

#pokemonDetails {
  text-align: center;
  max-width: 300px;
}
#pokemonDetails h2 {
  margin-top: 0;
  color: #3b4cca;
}
#pokemonDetails img {
  width: 150px;
  height: 150px;
  image-rendering: pixelated;
  margin: 1rem 0;
}
#pokemonDetails p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}
#pokemonDetails p strong {
  color: #3b4cca;
}

#search {
  padding: 0.5rem 1rem;
  border: 2px solid #3b4cca;
  border-radius: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  width: 250px;
}
#search:focus {
  outline: none;
  border-color: #3b4cca;
}

#pokemonDropdown {
  width: 250px;
  height: auto;
  border-radius: 0.5rem;
  border: 2px solid #3b4cca;
  padding: 0.5rem;
  margin-bottom: 2rem;
  font-size: 1rem;
}
#pokemonDropdown option {
  padding: 0.3rem;
}/*# sourceMappingURL=main.css.map */