I have now updated all of my code. The width for the body and background images is set to 100%, but there seems to be a gap around the perimeter of my page that I can't remove. I've tried adjusting percentages, margins, and padding without success. The noticeable black background image doesn't seem to be aligning correctly.
Below is some of the CSS code I am working with:
body {
background: url("background.png") no-repeat fixed center;
background-size: 100%;
width: 100%;
margin: 0;
padding: 0;
}
#msg {
color: #000000;
font-size: 40px;
margin: 0 auto;
padding-top: 400px;
padding-right: 50px;
float: right;
font-family: "Roboto Mono", monospace;
}
header {
width: 100%;
background: url("background 2.png") no-repeat fixed center;
background-size: 100%;
animation: example 1s;
animation-iteration-count: 1;
margin: -10px;
padding: 0;
}
... (CSS code continues)