Weird behaviour with changing font size

Tell us what’s happening:

This isn’t really an issue since I solved it. I found out that if you don’t indent your p font size attribute the tester will mark your code incorrect. The below code was marked incorrect but if you copied my style object and indented the p style it passes the test.

Your code so far

<style>
  .red-text {
    color: red;
  }
  p {
    font-size: 16px;
  }
</style>