---
id: 612ebcba99bfa46a15370b11
title: Step 27
challengeType: 0
dashedName: step-27
---
# --description--
Now you need to make it responsive. Add a `@media` query with a `max-width` of `768px`.
# --hints--
You should add a new `@media` query.
```js
assert(new __helpers.CSSHelp(document).getCSSRules('media')?.length === 1);
```
Your `@media` query should have a `max-width` of `768px`.
```js
assert(new __helpers.CSSHelp(document).getCSSRules('media')[0]?.media?.mediaText === '(max-width: 768px)');
```
# --seed--
## --seed-contents--
```html