Since filling on .header-containercauses overflow.
Adding box-sizing: border-box;to yours .header-containerwill fix the window size problem.
But not only that, you did not take your 18px heights into account .menu.
In full, changing your .header-containerto the following code:
.header-container {
color:white;
background-color:gray;
height:calc(100% - 18px);
max-width:400px;
box-sizing: border-box;
margin:auto;
top:0;
bottom:0;
padding-right:36px;
padding-left:36px;
padding-top:54px;
padding-bottom:54px;
}
To solve a problem.
Fiddle .