--- id: 60fad6dfcc0d930a59becf12 title: Step 37 challengeType: 0 dashedName: step-37 --- # --description-- The HTML for the registration form is finished. Now, you can spruce it up a bit. Start by changing the font to `Tahoma`, and the font size to `16px` in the `body`. # --hints-- You should use the `font-family` property to change the font. ```js assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('body')?.fontFamily); ``` You should set the `font-family` property to `Tahoma`. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('body')?.fontFamily, 'Tahoma'); ``` You should set the `font-size` property to `16px`. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('body')?.fontSize, '16px'); ``` # --seed-- ## --seed-contents-- ```html Registration Form

Registration Form

Please fill out this form with the required information

``` ```css --fcc-editable-region-- body { width: 100%; height: 100vh; margin: 0; background-color: #1b1b32; color: #f5f6f7; } --fcc-editable-region-- label { display: block; margin: 0.5rem 0; } ```