It would be great if you could post a link to your site...
It appears that you are referencing your style sheets differently. Try using the index call in the other pages:
<LINK href="styles.css" rel="stylesheet" type="text/css">
instead of
<LINK href="../styles.css" rel="stylesheet" type="text/css">
you may be calling an entirely different stylesheet.
You can also try constricting the width of the body instead of using a %
body{
background: url('images/background.jpg');
background-size: 100%;
margin: 0;
min-height: 100%;
width: 1024 px;}