Флексбокс, часть 1 / Испытание: сложные палитры [31/31]

Оцените код, пожалуйста

.palette-small,
.part{
    display: flex;
    justify-content: space-between;
}

.palette-box:nth-child(1) .palette-small{
    flex-direction: column-reverse;
    justify-content: center;
}

.palette-box:nth-child(1) .palette-small .color-3{
    align-self: center;
    order: 1;
}

.palette-box:nth-child(1) .palette-small .color-4{
    align-self: center;
    order: -1;
}

.palette-box:nth-child(2) .palette-small{
    flex-direction: column-reverse;
}

.palette-box:nth-child(2) .palette-small .color-1,
.palette-box:nth-child(2) .palette-small .color-4{
    align-self: flex-start;
}

.palette-box:nth-child(2) .palette-small .color-6,
.palette-box:nth-child(2) .palette-small .color-2{
    align-self: flex-end;
}

.palette-box:nth-child(3) .palette-small{
    flex-direction: row;
}

.palette-box:nth-child(3) .palette-small .part{
    flex-direction: column;
}


.palette-box:nth-child(4) .part:last-child{
    flex-direction: column-reverse;
}