.pkm_card {
    height: 240px;
    width: 240px;
    margin: 24px;
    margin-bottom: 80px;
    display: flex;
    align-items: end;
}


.pkm_card_content {
    height: 200px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 16px;
    border-style: solid;
    border-width: 4px;
    border-color:  rgb(219, 221, 224);
    background-color: rgb(219, 221, 224);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1; 
}


.pkm_card_content:hover {
    cursor: pointer;
    border-style: solid;
    border-color: white;
    box-shadow: 0px 0px 8px 8px rgba(255,255,255,0.5);
    transform: scale(108%);
}


.pkm_card_content:hover > .pkm_card_img {
    filter: drop-shadow(0 0 12px rgba(255,255,255));
}


.pkm_card_img {
    min-height: 160px;
    width: 120%;
    object-fit: contain;
    object-position: center;
}


.pkm_card_id {
    margin-top: 22px;
    color:rgb(153, 152, 152);
    font-family: Roboto;
    font-weight: 500;
    font-size: 18px;
}


.pkm_card_name {
    max-height: 64px;
    margin-top: -8px;
    overflow-y: clip;
    font-family: Pokemon;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 4px;
    color: rgb(50, 50, 50);
}


.pkm_card_types {
    width: 100%;
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    color: rgb(50, 50, 50);
}


.pkm_card_types div {
    width: 40%;
    padding: 6px 2px 6px 2px;
    text-align: center;
    border-style: solid;
    border-width: 4px;
    border-radius: 8px;
    font-family: Roboto;
    font-weight: 500;
    font-size: 18px;
}