If you were attempting to create a Fixed Top Menu, here is an example of how you could achieve it with the following code adjustments:
* {
margin: 0;
padding: 0;
list-style-type: none;
text-decoration: none;
}
header,
nav,
section,
aside,
footer,
article {
display: block;
}
body {
background-image: url(backwood.png);
width: 100%;
margin: auto;
}
.container {
margin-top: 190px;
background-size: cover;
width: 1300px;
height: 100%;
}
// More CSS code goes here...
Fixed position refers to elements being positioned relative to the browser window.
For more information on HTML element positioning, visit W3Schools.
Feel free to reach out if you have any further questions or need clarification!