Keep getting error message even though code is correct

Tell us what’s happening:
Describe your issue in detail here.
Right now I’m almost done the HTML/CSS course but on the second step in the third to last exercise I keep getting the error that I should use the background property in the body selector. I’ve done that numerous times so I’m pretty sure that I’m doing it correctly. I even copied the code from Google, changed browsers, did hard resets and until now nothing has worked.
The css code is at the bottom
Any help would be greatly appreciated

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>

<head>
  <meta charset="UTF-8" />
  <link rel="stylesheet" type="text/css" href="./styles.css" />
  <title>Penguin</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>

<body>
</body>
</html>
/* file: styles.css */
body{
background: linear-gradient(45 deg, rgb(118, 201, 255), rgb(247, 255, 222));
}
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:101.0) Gecko/20100101 Firefox/101.0

Challenge: Step 2

Link to the challenge:

you have space between 45 and deg

Thank you so much. I feel so dumb right now

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.