Испытание: строим сетку. Оценить адекватность.

Добрый день. Я выполнила задание на 93%, но мне кажется, что там очень много ошибок, и стопроцентного результата достичь не удалось. Прошу консультацию))

–HTML–

<!DOCTYPE html>
<html lang="ru">
    <head>
        <title>Испытание: строим сетку</title>
        <meta charset="utf-8">
    </head>
    <body>
        <div class="header">
        <div class="block block-1">Header</div>
        <div class="block block-2">Menu</div>
        <div class="block block-3">Promo 1</div>
        <div class="block block-4">Promo 2</div>
        </div>
        <div class ="clearfix"></div>
        <div class="part-2">
            <div class="columns column-1">Left</div>
        <div class="columns column-2">Main</div>
            <div class="columns column-3">Right</div>
            </div>
            <div class ="clearfix"></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;
}

.header {
background: #34495e;
height: 170px;

}

.clearfix {
clear:both;
height: 0px;
}

.block {
padding: 5px;
}

.block-1{
background: #c0392b;
height: 30px;
margin-left: 50px;
margin-right: 50px;
margin-bottom: 10px;
}

.block-2{
background: #3498DB;
height: 30px;
margin: auto;
margin-bottom: 10px;
padding-left: 55px;
}

.block-3 {
background: #c0392b;
float: left;
width: 160px;
margin-left:50px;
margin-right:5px;
height: 50px
}

.block-4 {
background: #c0392b;
float: right;
width: 160px;
margin-right:50px;
margin-left:5px;
height: 50px
}

.part-2 {
padding-top: 10px;
padding-bottom: 30px;
}

.columns {
background: #3498DB;
padding: 5px;
margin-bottom: 10px;

}

.column-1{
float: left;
height: 100px;
width: 60px;
margin-left: 50px;
margin-right: 5px;
}

.column-2{
float: left;
height: 100px;
width: 180px;
margin-right: 5px;
margin-left: 5px;
}

.column-3{
float: left;
height: 100px;
width: 60px;
margin-right: 50px;
margin-left: 5px;
}

.footer {
background: #34495e;
height: 40px;
padding: 5px;
padding-left: 55px;

}