Embrace using your enter key.
Try using it to put the word body on its own separate line, rather than smushing it after the previous code.
so hopefully you will re-write your code to look like this:
h1, h2, p {
text-align: center;
}
body {
backround-color:brown
}
Whew! that’s better! now look back up there and see how the text-align line is created? It has the name “text-align” then it has a colon : then it has the value center then it has a ; semi-colon at the end?
Try to add a semi-colon to your background-color line. Hopefully that helps.