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

header {
  text-align: center;
  padding: 20px;
  background-color: #ffcb05;
}

.menu {
  margin: 0;
  font-size: 30px;
}

.pokejustify {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.buscar input {
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.carta_pokemon {
  margin-top: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
}

.pokemon img {
  width: 100%;
  height: auto;
}

/* 🌟 Media Query para pantallas pequeñas (teléfonos) */
@media screen and (max-width: 480px) {
  .pokejustify {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 20px;
  }

  .menu {
    font-size: 24px;
  }

  .buscar input {
    width: 100%;
    font-size: 14px;
  }

  .carta_pokemon {
    width: 90%;
  }

  .pokemon img {
    width: 100%;
  }
}