Сетки / Испытание 27/32 96% не могу растянуть блок меню

 <!DOCTYPE html>
<html lang="ru">
    <head>
        <title>Испытание: строим сетку</title>
        <meta charset="utf-8">
    </head>
    <body>
        <div class="conteiner clearfix">
        <div class="header">Header</div>
        <div class="Menu">Menu</div>
        <div class="Promo-1">Promo 1</div>
        <div class="Promo-2">Promo 2</div>
        </div>
        <div class="conteiner-2 clearfix">
        <div class="Left">Left</div>
        <div class="Main">Main</div>
        <div class="Right">Right</div>
        </div>
        <div class="Footer">Footer</div>
        
    </body>
</html>

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

body {
    width: 450px;
    height: 335px;
    font-family: "Arial", sans-serif;
    font-size: 10px;
    color: white;
}
.header {
    display: block;
    background: #c0392b;
    width: 340px;
    margin: auto;
    height: 25px;
    padding: 5px;
    margin-bottom: 10px;
}
.conteiner {
    450px;
    background: #34495e;
    height: 150px;
    padding: 10px;
}
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
.Menu {
    display: inline-block;
    background: #3498DB;
    width: 300px;
    height: 30px;
    padding-left: 45px;
    padding-top: 5px;
    
}
.Promo-1 {
    background: #c0392b;
    float: left;
    width: 160px;
    height: 50px;
    margin-left: 40px;
    margin-top: 10px;
    padding: 5px;
}
.Promo-2 {
    float: right;
    background: #c0392b;
    width: 160px;
    margin-right: 40px;
    margin-top: 10px;
    height: 50px;
    padding: 5px;
}
.conteiner-2 {
    background: white;
    
}
.Left {
    background: #3498DB;
    float: left;
    width: 60px;
    margin-left: 50px;
    margin-top: 10px;
    padding: 5px;
    height: 100px;
}

.Main {
    background: #3498DB;
    float: left;
    width: 180px;
    margin-left: 10px;
    margin-top: 10px;
    padding: 5px;
    height: 100px;
}
.Right {
    float: right;
    background: #3498DB;
    width: 60px;
    height: 100px;
    padding: 5px;
    margin-right: 50px;
    margin-top: 10px;
}
.Footer {
    background: #34495e;
    margin-top: 10px;
    height: 35px;
    padding-left: 55px;
    padding-top: 5px;
}

.Menu {
display: inline-block;
background: #3498DB;
width: 395px;
height: 30px;
padding-left: 55px;
padding-top: 5px;
margin-left: -10px;
}

лень было разбираться в твоем коде, можно выйти из ситуации так
а вообще по идее нужно чтобы блок меню считал родителем контейнер с бекграундом и тогда можно было задать width: 100%;
может обернуть следует меню еще в один контейнер

.conteiner {
450px;

и вот тут пустое значение - косяк.