--- id: 6193f5169cdc684f60317783 title: Step 27 challengeType: 0 dashedName: step-27 --- # --description-- The browser defaults for font and color are not ideal. Give your `body` selector a `font-family` property set to `Tahoma` and a `color` property set to `#0a0a23`. # --hints-- Your `body` selector should have a `font-family` property set to `Tahoma`. ```js assert(new __helpers.CSSHelp(document).getStyle('body')?.fontFamily === 'Tahoma'); ``` Your `body` selector should have a `color` property set to `#0a0a23`. ```js assert(new __helpers.CSSHelp(document).getStyle('body')?.color === 'rgb(10, 10, 35)'); ``` # --seed-- ## --seed-contents-- ```html AcmeWidgetCorp Balance Sheet

Assets

Cash $25 $30 $28

This is the cash we currently have on hand.

Checking $54 $56 $53

Our primary transactional account.

Savings $500 $650 $728

Funds set aside for emergencies.

Total $579 $736 $809

Liabilities

Loans $500 $250 $0

The outstanding balance on our startup loan.

Expenses $200 $300 $400

Annual anticipated expenses, such as payroll.

Credit $50 $50 $75

The running balance on our line of credit.

Total $750 $600 $475

Net Worth

Total $-171 $136 $334

``` ```css --fcc-editable-region-- body { text-align: center; } --fcc-editable-region-- ```