.center{
    display: flex;
    margin-top: 50px;
}

.listTitle{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: .625rem .9375rem .625rem .9375rem;
    background-color: var(--lightWhite);
    border-radius: .3125rem;
    border: solid 3px var(--themeColor-dark);
    box-shadow: 5px 4px var(--themeColor-dark);
    margin-bottom: 40px;
}

h1{
    color: var(--themeColor-dark);
    font-weight: 550;
    font-size: 25px;
}

.listTitle p{
    color: var(--themeColor-dark);
    font-weight: 550;
}

/* LIST */
.listContainer{
    display: flex;
    margin: auto;
    flex-direction: column;
}

.table{
    margin-top: 30px;
}

.aspects{
    padding: 10px;
    background-color: var(--themeColor-dark);
    max-width: 200px;
    color: var(--lightWhite);
}

.people{
    min-width: 1000px;
    height: 60px;
    display: flex;
    background-color: var(--body);
    align-items: center;
    justify-content: space-between;
    padding: 0 15px 0 15px;
    border-radius: 0 8px 8px 0px;
    border: solid 2px var(--themeColor-dark);
    border-top: 0;
}

.center img{
    height: 50px;
    border-radius: 50%;
}