.family-tree {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
}

.node {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.name {
    font-size: 18px;
}

.spouses {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    position: relative;
}

.marriage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.spouse {
    color: white;
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
    width: 100%;
}

.children {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.child {
    padding: 10px 20px;
    background-color: thistle;
    border-radius: 10px;
    font-size: 16px;
}

.marriage::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: #000;
}

.spouses_ {
    position: relative;
}

.member-card {
    padding: 10px;
    background-color: #e323e3;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 16px;
}

.member-card::before {
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 16px;
}

.sp_child {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.block {
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.block_1 {
    width: 15px;
    height: 15px;
    background-color: #e323e3
}

.block_2 {
    width: 15px;
    height: 15px;
    background-color: #007bff
}

.block_3 {
    width: 15px;
    height: 15px;
    background-color: #05ef09
}
