27-32 100% Прошу сделать ревью кода

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

</body>
</html>

Вот СSS

html,
body {
    margin: 0;
    padding: 0;
}

body {
    width: 450px;
    height: 335px;
    font-family: "Arial", sans-serif;
    font-size: 10px;
    color: white;
}

/*
    Используемые цвета:
    #34495e – мокрый асфальт
    #c0392b – красный
    #3498DB – синий
*/

.header-wrap {
    background-color: #34495e;
    padding-top: 10px;
    padding-bottom: 5px;
    
}

.header {
     background-color: #c0392b;
     height: 25px;
     width: 340px;
     padding: 5px;
     margin: 0 auto;
}

.menu {
    padding-top: 5px; 
    height: 30px;
    background-color:  #3498DB;
    margin-top: 10px;
    padding-left: 55px; 
}

.positioner {
    width: 350px;
    margin: 10px auto;
    margin-bottom: 5px;
    
}

.positioner::after {
    display: table;
    content: "";
    clear: both;
} 

.promo {
    background-color:  #c0392b;
    width: 160px;
    height: 50px;
    padding: 5px;
}

.promo-1 {
    float: left;
    margin-right: 10px;
 }

.promo-2 {
    float: right;  
}

.positioner .content:last-child {
    margin-right: 0;
}

.content {
    background-color: #3498DB;
    height: 100px;
    margin-right: 10px;
    padding: 5px
}

.left {
    float: left;
    width: 60px;
    
}

.main {
    float: left;
    width: 180px;
    
}

.right {
    float: right;
    width: 60px;
    
}

.footer {
    background-color: #34495e;
    padding-top: 5px;
    height: 30px;
    padding-left: 55px;
    margin-top: 10px;
}

Благодарю!

Из недочетов - фиксированные высоты у блоков.
И отступ слева 55px. Такого не должно быть, у вас есть центровщик.