Задание 27/32, выполнено на 100%. Есть ли какие замечания по коду

<!DOCTYPE html>
<html lang="ru">
    <head>
        <title>Испытание: строим сетку</title>
        <meta charset="utf-8">
    </head>
    <body>
        <div class="head">
            <div class="layout-positioner">
                <div class="header">Header</div>
            </div>
                <div class="menu">Menu</div>
            <div class="layout-positioner">
                <div class="promo">Promo 1</div>
                <div class="promo">Promo 2</div>
            </div>
        </div>
        <div class="features clearfix">
            <div class="layout-positioner">
                <div class="block">Left</div>
                <div class="block">Main</div>
                <div class="block">Right</div>
            </div>
        </div>
            <div class="footer">Footer</div>
    </body>
</html>

html,
body {
    margin: 0;
    padding: 0;
}
body {
    width: 450px;
    height: 335px;
    font-family: "Arial", sans-serif;
    font-size: 10px;
    color: white;
}
.head {
    background:#34495e;
    min-height:160px;
    padding-top:10px;
}
.layout-positioner {
    width: 350px;
    margin: 0 auto;
}
.header {
    background:#c0392b;
    width:340px;
    min-height:25px;
    padding:5px;
}
.menu {
    background:#3498DB;
    min-height:25px;
    margin-top: 10px;
    padding:5px;
    padding-left:55px;
}
.promo {
    background:#c0392b;
    width:160px;
    min-height:50px;
    float:left;
    margin-right: 10px;
    margin-top: 10px;
    padding:5px;
}
.promo:last-child {
    margin-right: 0px;
    margin-left: 0px;
}
.features {
    padding-top:10px;
}
.block {
    background:#3498DB;
    width:60px;
    min-height:100px;
    float:left;
    margin-right: 10px;
    margin-bottom: 10px;
    padding:5px;
}
.block:nth-child(2) {
    width:180px;
    margin-left: 0px;
}
.block:nth-child(3) {
    margin-left: 0px;
    margin-right: 0px;
}
.footer {
    background:#34495e;
    min-height:25px;
    padding:5px;
    padding-left:55px;
}
.clearfix::after {
    content: "";
    display: table;
    clear: both; 
}

Есть замечания.

Этого быть не должно. У вас есть центровщик - .layout-positioner.
И не совсем понятно, зачем вы обнуляете отступы слева здесь:

padding-left:55px;
и
margin-left:0px; у .block:nth-child(2), .block:nth-child(3) и .promo:last-child остались от предыдыщего способа центрирования. Да, они тут не нужны, спасибо.