---
id: 61993e9adc9e9a0bb4d28fff
title: Step 33
challengeType: 0
dashedName: step-33
---
# --description--
Another interesting fact about penguins is that they do not have square bodies.
Use the `border-radius` property with a value of `80% 80% 100% 100%`, to give the penguin a slightly rounded body.
# --hints--
You should give `.penguin-body` a `border-radius` of `80% 80% 100% 100%`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.penguin-body')?.borderRadius, '80% 80% 100% 100%');
```
# --seed--
## --seed-contents--
```html