.pokedex-card{
    width: 200px;
    height: 300px;
    background-color: var(--bg-h-and-f);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.75);
    margin-right: 12px;
    margin-left: 12px;
    margin-bottom: 24px;
}

.pokedex-card:hover{
    box-shadow: 0px 0px 18px 0px rgba(248, 248, 248, 0.75);
}

.pokedex-card-header{
    display: flex;
    justify-content: space-between;
    padding-left: 8px;
    padding-right: 8px;
    align-items: center;
    width: 100%;
    height: 32px;
}

.pokedex-card-header p{
    color: var(--font-light-color);
}

.pokedex-card-header p:nth-child(2){
    text-align: center;
    flex-grow: 1;
}

.pokedex-card-body{
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 16px;
}

.pokedex-card-body>img{
    height: 150px;
}

.pokedex-card-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 100%;
    height: 48px;
}

.pokedex-type-logo{
    width: 60px;
}

