:root{
    --card-height : 350px;
    --card-width : 350px;
}

.elements-section{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.previewPerson{
    position: relative;
    height: var(--card-height);
    width: var(--card-width);
    transition: transform 20s ease-in-out;
}

.previewPerson img{
    border-radius: 16px;
    height: inherit;
    width: inherit;
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    object-fit: cover;
    object-position: center;
}

.person-icons {
    margin-top: 10px;   
    width: var(--card-width);
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: transparent;
}

.person-icons span{
    /* width:48%;
    border-radius: 16px;
    padding: 10px;
    background-color: #fff; */
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .person-icons button{
    text-transform: capitalize;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
} */

.person-icons img{
    cursor: pointer;
    height: 60px;
}

.person-icons img:hover{
   transform: scale(1.2);
}