I noticed that my content shrinks when the browser width is reduced using dev tools. From the header navigation to the footer, everything is contained within a container element with the following CSS:
.container {
width: 800px;
margin: 0 auto;
border: 2px solid green;
}
When the viewport reaches 800px wide, I experience a horizontal scroll and the content inside the container shrinks, causing space to be added at the bottom of the footer. I'm looking for a solution using media queries to make the container fill the screen. See image at screen size 788 bp.