Create a Media Query not working?

Tell us what’s happening:

Not sure what is happening here but looks this challenge is not working???

anyway, please let me know what I am doing wrong(i think my syntax is correct though)

my code is below and it still gives me this error:

Your p element should have the font-size of 10px when the device height is less than or equal to 800px.
Declare a @media query for devices with a height less than or equal to 800px.

Your code so far


<style>
  p {
    font-size: 20px;
  }
  
  /* Add media query below */

@media (min-height: 800px) {
  p {
      font-size: 10px;
  }
}
</style>
  
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus quis tempus massa. Aenean erat nisl, gravida vel vestibulum cursus, interdum sit amet lectus. Sed sit amet quam nibh. Suspendisse quis tincidunt nulla. In hac habitasse platea dictumst. Ut sit amet pretium nisl. Vivamus vel mi sem. Aenean sit amet consectetur sem. Suspendisse pretium, purus et gravida consequat, nunc ligula ultricies diam, at aliquet velit libero a dui.</p>

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-principles/create-a-media-query

If it’s less than a certain size you need to use max instead of min

oh! silly me! thanks @gebulmer