.profile_card {
    border:  solid black;
    border-radius: 8px;
    width: 200px;
    height: 200px;
    box-sizing:border-box;
    margin: 15px 15px 15px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.30, 1.70, 0.5, 1.25), box-shadow 0.3s ease;
}


.profile_card:hover {
    transform:  translateY(-13px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.profile_header {
    display: flex;
    justify-content: center;
    font-weight: bold;
    padding-top: 10px;
}

.pokemon_name{
    text-transform: capitalize;
}

.pokemon_img_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

.pokemon_img {
    height: 100px;
}

.type_icons_container {
    display: flex;
    justify-content: center;
}

.type_icon {
    height: 25px;
    margin-left: 5px;
    margin-right: 5px;
}

