I can provide more specific code if necessary but this basic code should demonstrate my issue. Essentially my page looks great when the window is maximized (min-width + left + right margin). But when you minimize the window the right margin disappears.
The idea is to have a body that always maintains a specific page margin around the content. Then to have the content always centered.
Code below. I've simplified my implementation to highlight my issue.
<style>
.panel{
min-width: 1020px;
max-width: 1200px;
margin: 0px auto 15px auto;
}
</style>
<body style="margin: 10px 20px 5px 20px;">
<div class="panel">
....my content
</div>
</body>