[31/31] 98% Нужна помощь, желательно с комментариями

Нужна помощь в решении данного задания. Желательно помощь с комментариями. Не могу понять почему в последней картинке зелёный круг стал в верхний угол, а голубой не стал в нижний угол ( мне кажется что он как-бы видит зелёный круг ). Код ниже:

.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 {
order: 1;
align-self: center;
}

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

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

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

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

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

.palette-box:nth-child(4) .part .color-3 {
align-self: flex-start;
}

.palette-box:nth-child(4) .part .color-2 {
align-self: flex-end;
}

Нашел свою ошибку и понял в чем было дело. Буду рад Вашей критике и советам. Вот исправленный код:
.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 {
order: 1;
align-self: center;
}

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

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

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

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

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

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

.palette-box:nth-child(4) .part .color-3 {
align-self: flex-start;
}

.palette-box:nth-child(4) .part .color-2 {
align-self: flex-end;
}