Learn HTML Forms by Building a Registration Form - Step 8

Tell us what’s happening:
How can I code this instructions below?
(It is time to spruce the project up with some CSS. Begin by giving the body a width of 100%, and a height of 100vh.)

Your code so far

<!-- file: index.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.css */

/* User Editable Region */

body {body-width: 100%; body-height: 100vh}

/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Mobile Safari/537.36

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

Link to the challenge:

Hello!
Remove the body- from within the curly brackers and place a ; behind both values.

example:

header {
border: solid;
color: yellow;
}

Hope this helps.