@media (max-width: 1100px) {
  .main-content {
    display: block;
    margin: 0 auto;
  }

  #loading-pikachu img {
    width: 300px;
  }

  .img {
    height: 30px;
  }

  h2 {
    font-size: 14px;
  }

  span {
    font-size: 12px;
  }

  .display-pokemon {
    border-radius: 0;
  }

  .display-pokemon p {
    font-size: 10px;
  }

  .form-container {
    display: block;
    margin: 0 auto;
  }

  form {
    margin-right: 20px;
    margin-left: 20px;
  }

  .prompt {
    font-size: 14px;
  }

  .select-pokemon-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 20px;
  }

  /* Mobile Pokémon Description */
  #selected-pokemon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: scroll;
  }

  #selected-pokemon.active {
    display: flex; /* Show when active */
  }

  .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    padding: 5px 10px;
    background-color: #f54c4c;
    color: white;
    border: none;
    border-radius: 10px;
  }

  .description-pokemon {
    font-size: 10px;
  }

  .height-and-weight {
    margin-top: 20px;
  }

  .height-and-weight span {
    font-size: 10px;
  }

  span .h2-height {
    font-size: 12px;
  }

  span .h2-weight {
    font-size: 12px;
  }

  .abilities-container {
    margin-top: 15px;
  }

  .abilities-container h2 {
    font-size: 12px;
  }

  .ability-info h4 {
    font-size: 10px;
  }

  span.abilities {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 60px;
    margin-left: 50px;
  }

  .evolution-container {
    margin-top: 20px;
  }

  .evolution-container h2 {
    font-size: 12px;
  }

  .close-button {
    display: block;
  }
}

@media (max-width: 500px) {
  body {
    padding: 0;
    margin: 0;
  }

  img {
    margin: 0;
  }

  .body-responsive {
    display: block;
    margin: 0 auto;
  }

  .select-pokemon-card {
    width: 200px;
  }

  .select-pokemon-card {
    width: 80%;
    max-width: 250px;
  }

  .pokemon-img {
    width: 45%;
  }

  .evolution-pokemon-container {
    display: flex;
    gap: 0;
    justify-content: center;
  }
}
