[27/32] - 99%. Прошу критики

HTML
<!DOCTYPE html>
    <html lang="ru">
        <head>
            <title>Испытание: строим сетку</title>
            <meta charset="utf-8">
        </head>
        <body>
          <div class="top">
            <div class="header">Header</div>
            <div class="menu">Menu</div>
            <div class="promo clearfix">
                <div class="promo1">Promo 1</div>
                <div class="promo2">Promo 2</div>
            </div>
         </div>
        <div class="center clearfix">
            <div class="left">Left</div>
            <div class="main">Main</div>
            <div class="right">Right</div>
        </div>
    <div class="footer">Footer</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;
}

.top {
    background: #34495e;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header {
    color: white;
    background: #c0392b;
    padding: 5px;
    width: 340px;
    min-height: 25px;
    margin-left: 50px;
}

.menu {
    box-sizing: border-box;
    color: white;
    background: #3498DB;
    margin-top: 10px;
    min-height: 35px;
    width: 100%;
    padding: 5px;
    padding-left: 55px;
}

.promo {
    padding: 10px 0 0 50px;
}

.promo1, .promo2 {
    float: left;
    background: #c0392b;
    width: 160px;
    margin-right: 10px;
    min-height: 50px;
    padding: 5px;
}

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

.center {
    padding: 10px 0 10px 50px;
}

.left, .right, .main {
    float: left;
    background: #3498D8;
    width: 60px;
    margin-right: 10px;
    padding: 5px;
    min-height: 100px;
}

.main {
    width: 180px;
}

.footer {
    background: #34495e;
    width: 100%;
    min-height: 35px;
    padding: 5px 0 0 55px;
}

Нет центровщика с автоматическими отступами.