Learn Accessibility by Building a Quiz - Step 67

I am stuck in the step 67.
I lost how I will place code.

  • {
    @media (prefers-reduced-motion: no-preference);
    }

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

Challenge: Learn Accessibility by Building a Quiz - Step 67

Link to the challenge:

Media query should contain the given code in this step within itself:

@media ....{
the existing css code

}

@media {
(prefers-reduced-motion: no-preference);
}

something like this?

no, the code in the editor at the start of the step is what is supposed to be nested inside the new media rule.
And the new media rule should follow the convention described in the exercise. That is

@media (feature: value) {
  /* selector code here */
}

bro, to be candid i still don’t get it yet

Try to figure out what you don’t understand and articulate that to us.

Is it a word? A phrase? A concept? Which specific one?