Change the Color of Text <h2> to red

The challenge tells you how to change the h2 element’s color to blue:

<h2 style="color: blue;">CatPhotoApp</h2>

Adding a style attribute like this style="color: blue;" is how you change the color of an element.

Now, what do you think you need to do to make it red?