31/31 94% Помогите, что не так?

.exam {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: flex-start;
}

.palette-box:first-child .palette-small {
display: flex;
flex-direction: column-reverse;
justify-content: center;
align-items: center;
}

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

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

.palette-box .part {
display: flex;
}

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

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

.palette-box:first-child .palette-small div:nth-child(3n+1) {
align-self: stretch;
}

.palette-box:first-child .palette-small .color-3 {
order: 1;
}

.palette-box:first-child .palette-small .color-4 {
order: -1;
}

.palette-box:nth-child(2) .palette-small div:nth-child(-n+2) {
align-self: flex-end;
}

GeraldRivsky, уберите правило для .exam:
.exam {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: flex-start;
}
и будет Вам счастье ))

правила размещающие сами палитры (.palette-box) в нужных местах скорее всего заданы в course.css подлинкованном изначально в index.html

1 лайк

Спасибо, что подсказали)