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

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

.pokemon .nameAndNumber {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pokemon .nameAndNumber .number {
    color: #000;
    opacity: .3;
    text-align: right;
    font-size: .8rem;
    font-weight: 600;
}

.pokemon .nameAndNumber .name {
    color: #FCFCFC; 
    font-size: 1.1rem;
    text-transform: capitalize;
}

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

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

.pokemon .detail .types .type {
    text-align: center;
    background-color: rgba(255, 255, 255, .2);
    color: #FCFCFC;
    padding: .25rem .5rem;
    margin: .25rem 0;
    font-size: .8rem;
    border-radius: 1rem;
}

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

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

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

@media screen and (min-width: 992px) {
    .content {
        height: auto;
        max-width: 992px;
        margin: 1rem auto;
        border-radius: 1rem;
    }
    .pokemons {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}