Change the Color of Text - missing semi colon (it's not missing)

Tell us what’s happening:
Am I missing something? I’ve been asked to change the colour of the text to red and end with a semi colon. I followed the instructions and added the semi colon, however when it comes to moving on it won’t let me and says: “Your style declaration should end with a ; .” even though it already does.
Thanks

Your code so far


<h2 style="color: red;">Cat Photo App</h2>

<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>
  
  <a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
  
  <div>
    <p>Things cats love:</p>
    <ul>
      <li>cat nip</li>
      <li>laser pointers</li>
      <li>lasagna</li>
    </ul>
    <p>Top 3 things cats hate:</p>
    <ol>
      <li>flea treatment</li>
      <li>thunder</li>
      <li>other cats</li>
    </ol>
  </div>
  
  <form action="/submit-cat-photo">
    <label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
    <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
    <label><input type="checkbox" name="personality" checked> Loving</label>
    <label><input type="checkbox" name="personality"> Lazy</label>
    <label><input type="checkbox" name="personality"> Energetic</label><br>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
</main>

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:
https://learn.freecodecamp.org/responsive-web-design/basic-css/change-the-color-of-text

There is no problem with your style. But the h2 text does not have spaces.

Change Cat Photo App to CatPhotoApp.

Not sure why the challenge tests complains about it.

After I’ve worked on a solution, and I’m pretty sure I’ve got it right, I’ve sometimes noticed that freeCodeCamp will balk because something isn’t quite right… too many spaces, etc.

I click the “Reset All Code” button, redo the solution, and it passes me.