It looks like you need to clear the floating elements in nav.
You can do this inside css as follows:
nav {
overflow: hidden;
}
It uses "clearfix". This is another way to do this:
.nav:after {
content: "";
display: table;
clear: both;
}
clearfix, , , html, . , , . css .