---
id: 6196aead7ac7bf1584b17a7f
title: Step 18
challengeType: 0
dashedName: step-18
---
# --description--
To overlap the mountain and `.ground` elements better, give the mountain a `margin-top` of `100px`, and the `.ground` element a `margin-top` of `-58px`.
# --hints--
You should give `.left-mountain` a `margin-top` of `100px`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.left-mountain')?.marginTop, '100px');
```
You should give `.ground` a `margin-top` of `-58px`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.ground')?.marginTop, '-58px');
```
# --seed--
## --seed-contents--
```html