When I apply background color to a text and try to center it, the background color takes up the whole webpage's width. I wanted the bg color to take up the text's size only.
HTML
<div class="order">
<h3>Hello world</h3>
<h1>How are you doing</h1>
</div>
CSS
.order h3,
.order h1, {
text-align: center;
}
.order h3 {
display: inline-flex;
font-family: Raleway;
color: white;
background-color: var(--main-color);
}
.order h1 {
font-family: Raleway;
}