
.card {
    position: relative;
    background: white;
    max-width:1000px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.1);
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.image {
    width:100%;
    position: relative;
}
.image img {
    /* La transition s'applique à la fois sur la largeur et la hauteur, avec une durée d'une seconde. */
    -webkit-transition: all 1s ease; /* Safari et Chrome */
    -moz-transition: all 1s ease; /* Firefox */
    -ms-transition: all 1s ease; /* Internet Explorer 9 */
    -o-transition: all 1s ease; /* Opera */
    transition: all 1s ease;
}

.image figure:hover img {
    /* L'image est grossie de 25% */
    -webkit-transform:scale(1.25); /* Safari et Chrome */
    -moz-transform:scale(1.25); /* Firefox */
    -ms-transform:scale(1.25); /* Internet Explorer 9 */
    -o-transform:scale(1.25); /* Opera */
    transform:scale(1.25);
}

#person {
    padding-top: 50px;
}

#person-fullname {
    margin-bottom:0;
}
#person-job {
    margin-top:0;
    font-weight: 500;
    color: rgba(0,0,0,0.3);
}

#person-picture {
    position: absolute;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    top: -50px;
    left: calc(50% - 50px);
    border: 5px solid white;
}

#person-country {
    position: absolute;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    top: 30px;
    left: calc(50% + 20px);
    border: 2px solid white;
}