Learn HTML Forms by Building a Registration Form - Step 10

I add the background-color but it still says " You should add the color within the body element selector."
what should I do???

Your code so far

/* file: index.Ext.html */
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <h1>Registration Form</h1>
    <p>Please fill out this form with the required information</p>
  </body>
</html>
/* file: styles.Ext.css */

body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
}

Your mobile information:

SM-A235F - Android 14 - Android SDK 34

Challenge: Learn HTML Forms by Building a Registration Form - Step 10

Link to the challenge:

You have added the background-color property but you missed the final part of the instructions:

Then, to see the text, change the color to #f5f6f7 .