--- id: 5f356ed6cf6eab5f15f5cfe6 title: Part 21 challengeType: 0 --- ## 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`.
## Tests
```yml tests: - text: Test 1 testString: '' ```
## Challenge Seed
```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; } ```