@media (max-width: 750px) {
  body {
    font-size: 12px;
  }

  .pokedex {
    flex-direction: column;
    padding: 30px 0;
  }

  .card-pokemon {
    max-width: 300px;
  }

  .card-pokemon .card-image {
    width: 200px;
    height: 200px;
  }

  .card-pokemon .card-information {
    padding: 60px 30px 30px;
    margin-top: -50px;
  }

  .card-pokemon .card-information .information {
    display: flex;
    justify-content: space-between;
    padding: 0;
  }

  .card-pokemon .card-information h3 {
    font-size: 16px;
  }

  .list-pokemon {
    max-width: 300px;
  }

  .list-pokemon ul {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .list-pokemon .pokemon {
    width: 140px;
    min-height: 50px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-bottom: 0;
    border-radius: 8px;
  }

  .list-pokemon .pokemon span {
    padding-right: 5px;
  }
}
