tep 18
The text is centered again so the link to the CSS file is working. Add another style to the file that changes the background-color property to brown for the body element.
You correctly changed the background colour of the h1, h2, and p elements. But the question asked to change the background of the body element instead.
Assuming your code is still the same as the first post, this part is correct, {background-color: brown;} but the question wants you to change the body element not h1, h2, p so you will have to change that accordingly.
To clarify, in the code that you already have h1, h2, p are all elements. And in the first part of the code you changed these elements to make sure the text will be centered.
Now ‘body’ is also an element. It’s quite literally the body of your html document. Where you put all the html code to make the site. (Like the text, and headers etc).
You can change individual elements like you did before, but if change the css of body it will change the entire page. They want you to change the background of the entire site brown.
You already worked out how to change backgrounds as you wrote above: h1, h2, p{background-color: brown;}
Now instead of changing it for these elements, try and replace the h1, h2, p to body instead.