---
id: 5f356ed63e0fa262326eef05
title: Part 24
challengeType: 0
---
## Description
Now make the background color of the `div` element to be `burlywood`.
## Tests
```yml
tests:
- text: Test 1
testString: ''
```
## Challenge Seed
```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--
```