98% сетки [27/32]

Доброго времени, проблема в сетке, читал на форуме, код похожий, но дает только 98%, подсвечивается в различиях блок Menu, но не могу понять, что же не так с ним.
Спасибо

HTML
 <html lang="ru">
    <head>
        <title>Испытание: строим сетку</title>
        <meta charset="utf-8">
    </head>
    <body>
    <div class="container">
        <div class="header layout-positioner"><p>Header</p></div>
        <div class="menu">
            <div class="layout-positioner"><p>Menu</p></div>
        </div>
        <div class="layout-positioner clearfix">
           <div class="promo"><p>Promo 1</p></div>
           <div class="promo"><p>Promo 2</p></div>
        </div>
    </div>
        <div class="layout-positioner clearfix">
           <div class="left"><p>Left</p></div>
           <div class="main"><p>Main</p></div>
           <div class="right"><p>Right</p></div>
        </div>
        <div class="footer">
            <div class="layout-positioner"><p>Footer</p></div>
    </body>
</html>
CSS html, body { margin: 0; padding: 0; }

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

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

Фоновый цвет каким образом определили?

с коментария в CSS… вместо 3 нажал на 1…нужно поработать с внимательностью. спасибо.