--- id: 5f356ed6cf6eab5f15f5cfe6 title: Part 21 challengeType: 0 dashedName: part-21 --- # --description-- The `div` element is used mainly for design layout purposes unlike the other content elements you have used so far. Add a `div` element inside the `body` element and then move all the other elements inside the new `div`. # --hints-- Test 1 ```js ``` # --seed-- ## --seed-contents-- ```html Camper Cafe Menu --fcc-editable-region--

CAMPER CAFE

Est. 2020

Coffees

--fcc-editable-region-- ``` ```css body { background-color: burlywood; } h1, h2, p { text-align: center; } ```