i am using .section-title h1 in my css to and align the text to centre but it doesnt work but it surely work if i just use h1 to align text.
<div id="section-title">
<h1>GET IN TOUCH</h1>
<p>Make sure to subscribe to this channel</p>
</div>
For the CSS I have tried
h1.section-title {
text-align: center;
}
and
.section-title h1
{
text-align: center;
}