/* Estilo da pokedex */
.pokemons {
    display: grid;
    grid-template-columns: 1fr;
    list-style: none;
    padding: 0;
    margin: 0;
}

.normal {
    background-color: #a6a877;
}

.grass {
    background-color: #77c850;
}

.fire {
    background-color: #ee7f30;
}

.water {
    background-color: #678fee;
}

.electric {
    background-color: #f7cf2e;
}

.ice {
    background-color: #98d5d7;
}

.ground {
    background-color: #dfbd69;
}

.flying {
    background-color: #a98ff0;
}

.poison {
    background-color: #a040a0;
}

.fighting {
    background-color: #bf3029;
}

.psychic {
    background-color: #f65687;
}

.dark {
    background-color: #725847;
}

.rock {
    background-color: #b8a137;
}

.bug {
    
    background-color: #a8b720;
}
.ghost {
    background-color: #6e5896;
}

.steel {
    background-color: #b9b7cf;
}

.dragon {
    background-color: #6f38f6;
}

.fairy {
    background-color: #f9aec7;
}


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

.pokemon .numero {
    color: black;
    opacity: 0.3;
    text-align: right;
}

.pokemon .nome {
    color: white;
    margin-bottom: 0;
    text-transform: capitalize;
}

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

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

.pokemon .detalhes .types .type {
    color: white;
    padding: 0.25rem 0.5rem;
    margin: 0.25rem 0;
    font-size: 0.62rem;
    border-radius: 1rem;
    filter: brightness(1.1);
    text-align: center;
}

.pokemon .detalhes img {
    max-width: 100%;
    height: 80px;
}

#carregarMais {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

#carregarMais button {
    background-color: #6c79db;
    color: white;
    padding: 0.25rem 0.5rem;
    margin: 0.25rem 0;
    font-size: 1rem;
    border: none;
    border-radius: 1rem;
}


