---
id: 5d822fd413a79914d39e9908
title: Step 64
challengeType: 0
dashedName: step-64
---
# --description--
Remove the `background-color` property and value from `.bb4`, and add it to the three new sections `.bb4a`, `.bb4b`, and `.bb4c`, so only the sections are filled.
# --hints--
You should remove the `background-color` from `.bb4`.
```js
assert.isEmpty(new __helpers.CSSHelp(document).getStyle(".bb4")?.backgroundColor);
```
You should give `.bb4a` a `background-color` of `--building-color4`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(".bb4a")?.backgroundColor.trim(), "var(--building-color4)");
```
You should give `.bb4b` a `background-color` of `--building-color4`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(".bb4b")?.backgroundColor.trim(), "var(--building-color4)");
```
You should give `.bb4c` a `background-color` of `--building-color4`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(".bb4c")?.backgroundColor.trim(), "var(--building-color4)");
```
# --seed--
## --seed-contents--
```html