I have DOM that looks something like this:
... >
Assuming you always want the class applied to this component, you can use host in your component metadata:
@Component({ selector:'project', host: { class:'classYouWantApplied' } })
Resulting in:
...