A bug? Im stuck in this background color

Hi! I thinks there is an error, I am stuck in this part, and the code seems right to me, it keeps me saying:

Sorry, your code does not pass. Try again.
You should add the color within the body element selector.

   **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
 <head>
   <title>Registration Form</title>
	  <link rel="stylesheet" type="text/css" href="styles.css" />
 </head>
 <body>
   <h1>Registration Form</h1>
   <p>Please fill out this form with the required information</p>
 </body>
</html>
/* file: styles.css */
body {
 
background-color: #1b1b32;
width: 100%;
height: 100vh;
margin: 0;

}


   **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 9

Link to the challenge:

This does not have a color property.
It has background-color, width, height, and margin. No color.

Ohhh my bad! You are right! Thanks :grinning:
I must pay more attention

I’m glad I could help. Happy coding.

1 Like

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