--- id: 6193ee19d10be144d6bc9c46 title: Step 26 challengeType: 0 dashedName: step-26 --- # --description-- Now that you have all of the financial data in place, you need to style your balance sheet so it looks visually appealing. Start by creating a `body` selector, and give it a `text-align` property set to `center`. # --hints-- You should create a `body` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('body')); ``` Your `body` selector should have a `text-align` property set to `center`. ```js assert(new __helpers.CSSHelp(document).getStyle('body')?.textAlign === 'center'); ``` # --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-- --fcc-editable-region-- ```