--- id: 61fda307bde0b091cf7d884a title: Step 29 challengeType: 0 dashedName: step-29 --- # --description-- Create a `body` selector and give it a `font-family` property set to `sans-serif` and a `color` set to `#0a0a23`. # --hints-- You should have a `body` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('body')); ``` Your `body` selector should have a `font-family` property set to `sans-serif`. ```js assert(new __helpers.CSSHelp(document).getStyle('body')?.getPropertyValue('font-family') === 'sans-serif'); ``` Your `body` selector should have a `color` property set to `#0a0a23`. ```js assert(new __helpers.CSSHelp(document).getStyle('body')?.getPropertyValue('color') === 'rgb(10, 10, 35)'); ``` # --seed-- ## --seed-contents-- ```html Balance Sheet

AcmeWidgetCorp Balance Sheet

Assets
2019 2020 2021
Cash This is the cash we currently have on hand. $25 $30 $28
Checking Our primary transactional account. $54 $56 $53
Savings Funds set aside for emergencies. $500 $650 $728
Total Assets $579 $736 $809
Liabilities
2019 2020 2021
Loans The outstanding balance on our startup loan. $500 $250 $0
Expenses Annual anticipated expenses, such as payroll. $200 $300 $400
Credit The outstanding balance on our credit card. $50 $50 $75
Total Liabilities $750 $600 $475
Net Worth
2019 2020 2021
Total Net Worth $-171 $136 $334
``` ```css html { box-sizing: border-box; } --fcc-editable-region-- --fcc-editable-region-- ```