31/31 испытание сложные палитры 94% В чем ошибка??

/первая картинка/

.palette-box:first-child .palette-small {
flex-direction: column;
justify-content: center;
display: flex;
}
.palette-box:first-child div .color-4
{align-self: center;}

.palette-box:first-child div .color-3
{align-self: center;}

.palette-box:first-child .palette-small .color-2 {order: 3}
.palette-box:first-child .palette-small .color-3 {order: 1}
.palette-box:first-child .palette-small .color-4 {order: 4}
.palette-box:first-child .palette-small .color-5 {order: 2}

/вторая картинка/

.palette-box:nth-child(2) .palette-small {
display: flex;
flex-direction: column-reverse;
justify-content: space-between;
}

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

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

.palette-box:nth-child(2) .palette-small .color-2 {order: 1;}
.palette-box:nth-child(2) .palette-small .color-6 {order: 2;}
.palette-box:nth-child(2) .palette-small .color-4 {order: 3;}
.palette-box:nth-child(2) .palette-small .color-1 {order: 4;}

/третья картинка/

.palette-box:nth-child(3) .palette-small {
display: flex;
flex-direction: row;
justify-content: space-between;
}

.palette-box:nth-child(3) .palette-small .part {
display: flex;
flex-direction: column;
justify-content: space-between;
}
/* четвертая картинка*/

.palette-box:nth-child(4) .palette-small {
display: flex;
flex-direction: row;
justify-content: space-between;
}

.palette-box:nth-child(4) .palette-small .part:first-child {
display: flex;
flex-direction: row;
}

.palette-box:nth-child(4) .palette-small .part:nth-child(2) {
display: flex;
flex-direction: column-reverse;
justify-content: space-between;
}

Нужно добавить код для изменения желтого
.palette-box:nth-child(4) .palette-small .color-4{align-self:auto;}