---
id: 60b69a66b6ddb80858c515b5
title: Step 64
challengeType: 0
dashedName: step-64
---
# --description--
Style your `black-round-hat` element with an `id` selector. Set the `width` to `180px`, the `height` to `150px`, and the `background-color` to `rgb(45, 31, 19)`.
# --hints--
You should have a `#black-round-hat` selector.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-round-hat'));
```
Your `#black-round-hat` selector should have a `width` property set to `180px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-round-hat')?.width === '180px');
```
Your `#black-round-hat` selector should have a `height` property set to `150px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-round-hat')?.height === '150px');
```
Your `#black-round-hat` selector should have a `background-color` property set to `rgb(45, 31, 19)`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-round-hat')?.backgroundColor === 'rgb(45, 31, 19)');
```
# --seed--
## --seed-contents--
```html