--- id: 5f356ed63e0fa262326eef05 title: Part 24 challengeType: 0 dashedName: part-24 --- # --description-- Now make the background color of the `div` element to be `burlywood`. # --hints-- Test 1 ```js ``` # --seed-- ## --seed-contents-- ```html Camper Cafe Menu

CAMPER CAFE

Est. 2020

Coffees

``` ```css body { /* background-color: burlywood; */ } h1, h2, p { text-align: center; } --fcc-editable-region-- div { width: 300px; } --fcc-editable-region-- ```