I can’t change the background color of a specific page

Looking at your pages source, it does not have post/page ID’s being added to the page’s body class so you referencing something in your CSS that doesn’t exist.

Try this rather (not sure what section you want changed):

body.blog {
    background-color: red;
}

or

body.blog #content {
        background-color: red;
    }