Responsive Web Design (beta) stuck

I’m on step 19 of “Learn Basic CSS by Building a Cafe Menu” where the instructions are:

“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.”

My code is as follows:
" h1, h2, p {

text-align: center;

}

body {

background-color: brown;

}"
Which is properly changing the background, but it doesn’t pass. It keeps telling me to use a “body selector”.

any advice would be appreciated.

Nevermind!
I troubleshooted for myself, and determined that one or more of my extensions on firefox was interfering with the test. :slight_smile:

remove
h1, h2, p {

text-align: center;

}

1 Like

Use this.
body {
background-color: brown;
}

3 Likes

Delete the comment and its contents inside the body type selector. Now add a background-image property and set its value to url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg) .