--- id: 6193f7904dc7ee554d12571f title: Step 31 challengeType: 0 dashedName: step-31 --- # --description-- The `AcmeWidgetCorp` text should be a bit smaller. Create a `#header h2` selector to target only the `h2` elements within your `#header` element, and give it a `font-size` property set to `1.3em`. # --hints-- You should have a new `header h2` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('#header h2')); ``` Your `header h2` selector should have a `font-size` property set to `1.3em`. ```js assert(new __helpers.CSSHelp(document).getStyle('#header h2')?.fontSize === '1.3em'); ``` # --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 body { text-align: center; font-family: Tahoma; color: #0a0a23; } #sheet { text-align: left; max-width: 500px; margin: auto; padding: 10px; border: 2px solid #d0d0d5; } --fcc-editable-region-- --fcc-editable-region-- ```