I need to align "OUTDOOR" word to center , pls help, i m new to CSS. for what i have tried,the "outdoor" is aligned to left , eventhough "Is where life happens" aligns center.
//here is my html part
<div class="header__text-box">
<h1 class="heading-primary">
<span class="heading-primary--main"> outdoor</span>
<span class="heading-primary--sub">is where life happens</span>
</h1>
// here is the css parent element
.heading-primary{
color:#fff;
text-transform: uppercase;
margin-bottom: 6rem;
}
here is the child elements
.heading-primary--main{
display: inline-block;
font-size: 5rem;
font-weight: 500;
letter-spacing: 3.5rem;
}
.heading-primary--sub{
display:block;
font-size: 1.6rem ;
font-weight:800;
letter-spacing: 1.35rem;
}