--- 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 Piano
``` ```css html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; } #piano { background-color: #00471b; width: 992px; height: 290px; margin: 80px auto; padding: 90px 20px 0 20px; position: relative; border-radius: 10px; } .keys { background-color: #040404; width: 949px; height: 180px; padding-left: 2px; } .key { background-color: #ffffff; position: relative; width: 41px; height: 175px; margin: 2px; float: left; border-radius: 0 0 3px 3px; } .key.black--key::after { background-color: #1d1e22; content: ""; position: absolute; left: -18px; width: 32px; height: 100px; border-radius: 0 0 3px 3px; } .logo { width: 200px; position: absolute; top: 23px; } --fcc-editable-region-- --fcc-editable-region-- ```