Hey!
Learning to describe the bugs or issues you’re facing is a great skill to have in a developer, it may seem hard at first, but you should at least provide a brief summary of what you are trying to accomplish and what’s the error that shows up when you try to run your code.
It will also make it easier for others to help you if they know the problem beforehand.
In this particular problem, the bug seems to be on this line.
Selectors in CSS are used to “select” or target the elements that you want to style in your HTML. for example if i want to change the background color of all of the button elements in my HTML code, i would write something like this:
//here button is a selector
button{
background-color: red;
}
In the same way, you’re supposed to align your h1 tag to the center of the page by setting its text-align property to center.
If you want to learn more about CSS selectors, here’s an article.