---
id: 5f45b715301bbf667badc04a
title: Step 85
challengeType: 0
dashedName: step-85
---
# --description--
The menu text `CAMPER CAFE` has a different space from the top than the address at the bottom of the menu. This is due to the browser having some default top margin for the `h1` element.
Change the top margin of the `h1` element to `0` to remove all the top margin.
# --hints--
You should set the `margin-top` property to `0`.
```js
const hasMarginTop = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style['margin-top'] === '0px');
assert(hasMarginTop);
```
Your `h1` element should have a `margin-top` of `0`.
```js
const h1MarginTop = new __helpers.CSSHelp(document).getStyle('h1')?.getPropertyValue('margin-top');
assert(h1MarginTop === '0px');
```
# --seed--
## --seed-contents--
```html