27/32 100% Помогите оптимизировать код

Можно ли оформить код компактней?
Сразу признаюсь, что в заголовке и промо поленился делать вложенные блоки для контента, из-за чего в расчетах размеров блоков пришлось высчитывать внутренние отступы. А также свойство .content не влияет на текст в этих блоках.

[details=Код]

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

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

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

.laycentr {
display: table;
content: “”;
clear: both;
width: 350px;
margin: 0 auto;
}

.container-h {
min-height: 50px;
background-color: #34495e;
margin-bottom: 10px;
padding-top: 10px;
}

.header {
box-sizing: border-box;
height: 35px;
width: 100%;
background-color: #c0392b;
padding: 5px;
float:left;
margin-bottom: 10px;
}

.menu {
min-height: 35px;
background-color: #3498DB;
margin-bottom: 10px;
}

.content {
padding: 5px;
}

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

.promo1 {
float: left;
}

.promo2 {
float: right;
}

.col {
background-color: #3498DB;
height: 100px;
padding: 5px;
float: left;
margin-right:10px;

}

.left, .right {
width: 60px;
}

.right {
margin-right:0px;
}

.main {
width: 180px;
}

.footer {
margin-top: 10px;
background-color: #34495e;
min-height:40px;
}

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

Это, я так полагаю, центровщик. Тогда что здесь делают стили для распорки?