.card_closed {
    height: 350px;
    width: 250px;
    background-color:white;
    border: 2px solid black;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.pkm_header {
    font-family: Jersey_15;
    font-size: 24px;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px;
}

.pkmn_img {
    width: 100%;
}

.pkm_types {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    padding-top: 16px;
}

.pkm_types img {height: 25px;}

.bg_normal {background-color: rgb(137, 137, 137);}
.bg_fighting {background-color: rgb(255, 153, 0);}
.bg_flying {background-color: lightblue;}
.bg_poison {background-color: rgb(190, 47, 190);}
.bg_ground {background-color: rgb(159, 78, 37);}
.bg_rock {background-color: rgb(245, 177, 19);}
.bg_bug {background-color: rgb(148, 139, 56);}
.bg_ghost {background-color: rgb(135, 1, 50);}
.bg_steel {background-color: rgb(195, 208, 213);}
.bg_fire {background-color:red;}
.bg_water {background-color:rgb(0, 85, 255);}
.bg_grass {background-color:rgb(3, 145, 3);}
.bg_electric {background-color:yellow;}
.bg_psychic {background-color: rgb(253, 0, 143);}
.bg_ice {background-color:turquoise;}
.bg_dragon {background-color: blue;}
.bg_dark {background-color: rgb(135, 54, 54);}
.bg_fairy {background-color: pink;}

.hover:hover img {
    filter: drop-shadow(0 0 0.75rem rgb(255, 255, 255));
}