Media query not passing test for portfolio

Tell us what’s happening:
I have included a media query in my CSS for the portfolio page (I really don’t need it, but there you go). The FCC testing script keeps telling me there is no media query. What to do?

Your code so far
@media screen and (max-width: 200px) {
body {
background-color: #e2d5d5;
}
}
Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36.

Link to the challenge:

hmm try removing ‘screen and’.

Thanks. I uploaded the code to GitHub Pages and it worked. A ghost in the machine, I guess.

I encountered the same issue, the test passed on codepen but not locally (i.e., using the CDN link and opening the page in Chrome). Every other media query I copy-pasted (from completed projects) also didn’t work.