.container-people{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25));
    padding: 40px;
    
}

.human-card{
    border-radius: 5px;
    background-color: #f6f9ff;
    text-align: center;
    font-size: 16px;
    color: #383838;
    font-family: Inter;
    width: 320px;
    height: 440px;
}

.title-human{
    padding-top: 10px;
    height: 140px;
    display: block;
}

.photo {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    top: 0px;
    left: 0px;
    width: 140;
    height: 100;
    object-fit: cover;
}

.name{
    font-weight: 500;
    font-size: 25px;
    white-space: pre-wrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role{
    font-size: 20px;
    padding-top: 10px;
    font-weight: 500;
    color: #5f96bd;
    display: flex;
    align-items: center;
    justify-content: center;
}