.listagem{
    max-width: 200px;
}
.listagem .pokemon{
    justify-content: space-evenly;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background-color: rgb(141, 117, 72);
    padding: 0 5px;
    border-radius: 30px;
    cursor: pointer;
    color: aliceblue;
    min-height: 70px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
    transition: 0.15 ease-in-out;
}
.listagem .pokemon:hover{
    transform: scale(1.10);
}
.listagem .pokemon img{
    width: 25%;
    border-radius: 50%;
}
.listagem .pokemon span{
    padding-right: 20px;
}
.listagem .pokemon.ativo{
    background-color: rgb(212, 150, 15);
}