.pokecardsMain{
    margin-left: 5vw;
    margin-right: 5vw;
    margin-top: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
}

.pokecard{
    width: 200px;
    height: 300px;
    border: 1px solid white;
    border-radius: 20px;
    margin: 8px;
}

.pokecardHeader{
    display: flex;
    justify-content: space-between;
    width: 80%;
    align-items: center;
}

.pokecard img{
    width: 70%;
    height: 150px;
}

.pokecardOverlay{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-image: url("../img/pokeball.svg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;

}

.pokecardInfos{
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.items{
    width: 40%;
    height: 20px;
    border-radius: 6px;
    border: 1.5px solid black;
    display: grid;
    place-items: center;
}

.pokecard :hover{
    opacity: 0.7;
    cursor: pointer;
}