Try change this:
#bottom-of-page {
width: 100%;
height: 100px;
position:absolute;
margin-left:-400px;
margin-bottom:px;
}
to:
#bottom-of-page {
width: 100%;
height: 100px;
position:absolute;
}
Then add this:
#bottom-of-page img {
margin-left: -70%;
}
The grey gap comes from this CSS:
body {
margin-bottom: 100px;
}
If you remove it, the grey gap should be gone.