how can I make "div.header-title" center itself (max-width at 750px). Each H1,H2, H3 below should be a new line aligned left.
.header-title {
display: flex;
justify-content: center;
align-items: center;
}
h2 {
display:block;
text-align:left;
}
<div class="header-title">
<h1 class="title">Title 1</h1>
<h2 class="author">Author</h2>
<h2 class="author-info ">more from <a href="#">Author</a></h2>
</div>