Is there a way to stack the Title and Subtitle on top of each other in a centered manner? Any suggestions?
Code
#titleBar {
display: flex;
justify-content: space-between;
}
#titleContainer {
display: flex;
justify-content: center;
}
<div id="titleBar">
<div id="profile">
<a href=""><img src="https://img.icons8.com/material-outlined/48/000000/user-male-circle.png" alt="Profile Picture" class="profilePicture" />
</a>
</div>
<div id="titleContainer">
<h1 id="title">Title</h1>
<h3 id="subtitle">Subtitle</h3>
</div>
<div id="search">
<img src="https://img.icons8.com/external-dreamstale-lineal-dreamstale/32/000000/external-search-ui-dreamstale-lineal-dreamstale.png" />
</div>
</div>