27/32 Испытание. 98%

Добрый вечер, дорогие форумчане!
Не хватает 2%, так как надписи “Menu” и “Footer” расположены немного неправильно.
Подскажите что нужно исправить чтобы получить 100%
Заранее благодарен!

Вот код:

HTML
<!DOCTYPE html>
<html lang=“ru”>
<head>
<title>Испытание: строим сетку</title>
<meta charset=“utf-8”>
</head>
<body>
<div class=“header”>
<div class=“layout-positioner”>
<div class=“header-colum”>Header</div>
</div>
<div class=“menu”>
<div class=“layout-positioner”>
Menu
</div>
</div>
<div class=“layout-positioner”>
<div class=“promo”>
Promo 1
</div>
<div class=“promo”>
Promo 2
</div>
</div>
</div>
<div class=“features”>
<div class=“layout-positioner”>
<div class=“features left-colum”>
Left
</div>
<div class=“features center-colum”>
Main
</div>
<div class=“features right-colum”>
Right
</div>
</div>
</div>
<div class=“footer”>
<div class=“layout-positioner”>
Footer
</div>
</div>
</body>
</html>
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;

CSS:

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

body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}
.header {
background-color: #34495e;
margin-bottom: 10px;
padding: 10px 0;
}
.header .header-colum {
background-color: #c0392b;
min-height: 35px;
margin-bottom: 10px;
padding: 5px;
box-sizing: border-box;
}
.layout-positioner::after {
display: table;
content: “”;
clear: both;
}
.layout-positioner {
margin: 0 auto;
width: 350px;
}
.header .menu {
background-color: #3498DB;
min-height: 35px;
margin-bottom: 10px;
padding: 5px;
box-sizing: border-box;
}
.promo {
background-color: #c0392b;
width: 170px;
float: left;
min-height: 60px;
margin-right: 10px;
padding: 5px;
box-sizing: border-box;
}
.promo:last-child {
margin-right: 0;
}
.features {
min-height: 110px;
}
.left-colum {
background-color: #3498db;
float: left;
width: 70px;
margin-right: 10px;
padding: 5px;
box-sizing: border-box;
}
.center-colum {
background-color: #3498db;
float: left;
width: 190px;
padding: 5px;
box-sizing: border-box;
}
.right-colum {
background-color: #3498db;
float: right;
width: 70px;
padding: 5px;
box-sizing: border-box;
}
.footer {
background-color: #34495e;
min-height: 35px;
padding: 5px 10px;
box-sizing: border-box;
margin-top: 10px;

Различия покажите

можете у меню и футера сменить название класса позиционера и задать ему стили вот эти
.layout-positioner-2{ margin:0 auto; width:350px; padding-left:10px; }
там паддинг выровняете сами потому что в песочнице переделывал и не пробовал в испытании

Спасибо! Помогло.