---
id: 6196d41d40bf9b2aaea5d520
title: Step 27
challengeType: 0
dashedName: step-27
---
# --description--
Position the sun in the top right corner of the screen such that `75px` of its top and right edges are off screen.
# --hints--
You should give `.sun` a `top` of `--fcc-expected--`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.sun')?.top, '-75px');
```
You should give `.sun` a `right` of `--fcc-expected--`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.sun')?.right, '-75px');
```
# --seed--
## --seed-contents--
```html