You can address any <h1> tag which has an id (I think all of them do in ZC) in your template's stylesheet.

h1#yourHeading {text-decoration: whatever; color: whatever;}

Or you can address it by what container it is in:

#yourContainer h1 {text-decoration: whatever; color: whatever;}