I would like the H1 and H3 to align at the bottom on the text, I can't get it to happen.
I've made a codepen https://codepen.io/rickgove/pen/RwRvLyj
<div class="flex-div">
<h1>Title</h1>
<h3>Description</h3>
</div>
.flex-div{
background: black;
color: dodgerblue;
font-family: monospace;
display: flex;
align-items: center;
justify-content: center;
}
h1 {
margin-right: 1rem;
}