/****** Bild vergroessern bei "hover" Funktion   ****/
/******          auf der -PERSON-Seite         ******/
.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.card{
    height: 300px;
    width: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.card img{
    height: 100%;
}
.card_content{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    width: 200px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.505) 25%);
    transform: translateY(calc(100% - 80px));
    transition: 250ms ease-in-out;
}
.card:hover .card_content{
    transform: translatey(0);
}
.card:hover{
    transform: scale(1.4);
}