.content h1 {
    margin: 1rem .5rem;
}

.pokemons {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1;
}

.pokemons a {
    text-decoration: none;
}

.pokemon {
    display: flex;
    flex-direction: column;
    margin: .5rem;
    padding: 1rem 1rem;
    border-radius: 1rem;
}

.pokemon:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

.pokemon-number {
    color: #000;
    opacity: .25;
    text-align: right;
    font-size: .625rem;
}

.pokemon-name {
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: .25rem;
}

.detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.types {
    margin: 0;
    padding: 0;
    list-style: none;
}


.type {
    color: #fff;
    border-radius: 1rem;
    padding: .25rem .5rem;
    margin: .25rem 0;
    font-size: .625rem;
    text-align: center;
    filter: brightness(115%);
}


.detail img {
    align-self: flex-end;
    max-width: 65%;
    height: 70px;
    /* filter: drop-shadow(4px 0px 1px rgba(0, 0, 0, 0.2)); */
}

.pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: .5rem 0 0 0;
    z-index: 1;
}

.pagination button {
    color: #fff;
    background-color: #000;
    border-radius: 1rem;
    padding: .25rem .5rem;
    margin: .25rem 0;
    border: none;
    font-size: .625rem;
    text-align: center;
}

.pagination button:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease-in-out;
}

@media screen and (min-width: 380px) {
    .pokemons {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 576px) {
    .pokemons {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (min-width: 992px) {
    .pokemons {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}