This is not valid CSS syntax. The HTML style element allows you to write CSS directly within an HTML document. Everything within the style tags should be valid CSS code.
The syntax for a CSS style declaration is (as given in the challenge instructions):
element {
property: value;
}
So, your element is h1, your property is text-align and your value is center. Using the above syntax, replace the corresponding words with the correct values.