I've copied this code character for character and it still won't work

Tell us what’s happening:
I’ve read the forum post and watched the video several times but still, even after copying the code character for character, my code won’t work.

Your code so far


<style>
p {
  font-size: 20px;
}

/* Only change code below this line */
@media (min-height: 800px) {
p{
  font-size: 10px;
}
}
/* Only change code above this line */
</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; rv:79.0) Gecko/20100101 Firefox/79.0.

Challenge: Create a Media Query

Link to the challenge:

Hello :slight_smile:!

Read carefully what the description says:

The key here is: when the device’s height is less than or equal to 800px. You’re doing the opposite to what is asked.

If you give up:

Use max-height instead of min-height.