Stuck on #9 (color), please help!

Okay, I am having issues with the last of the directions, “Change the color of the second paragraph to red and its font size to 10px”. I feel as through I have done it right, but it keeps stating, "have you made your second paragraph red?, when I click on “save and submit”. Please help me…I’ve been at it for an hour and even reloaded the page.
Directions:
Change the heading color to green and its size to 16px.
Change the color of the first paragraph to violet.
Change the color of the second paragraph to red and its font size to 10px.



<!DOCTYPE html>
<html>
	<head>
		<title>Changing the colors!</title>
	</head>
	<body>
		<h2 style="color:green;font-size:16px">Big Heading</h1>
			<p><h2 style= "color:violet">A giant bear and a little duck were friends.</p>
			<p><h2 style= "color:red;font-size:10px"> But the bear got hungry and ate the duck.</p>
	</body>
</html>


<do not remove the three backticks below>


the h2 in the instructions was to test you, reset the exercise add the style attribute to the h1 or paragraph opening tags, since you can add style attribute to many opening tags. So if you have a paragraph:

<p>i am a paragraph</p>

you can just add the style attribute to the paragraph opening tag:

<p style="">i am a paragraph</p>

no need to include a h2 opening tag, that was a test from the exercise, to see if you know this

Thank you for the help! I was able to pass that section.