I'm attempting to achieve the desired layout shown in this result: https://i.sstatic.net/B3EDr.png
Here is the code I have been working with:
<div class="container">
<h1>Welcome Dennis,</h1>
<div class="col-12 card card-body mb-2">
<div class="row">
<div class="col-md-3">
<div class="col-md-6 text-center d-flex">
<img class="mx-auto my-auto" src="img/foot.png">
</div>
</div>
<div class="col-md-8 card card-body mb-2">
<p class="text-center">Center aligned text on all viewport sizes.</p>
</div>
<div class="col-md-8 card card-body mb-2">
<p class="text-center">Center aligned text on all viewport sizes.</p>
</div>
</div>
</div>
</div>
The resulting layout can be seen here: https://i.sstatic.net/AvZCD.png
I am aiming to have two columns stacked under each other next to the foot. Despite trying various approaches, I haven't achieved the desired outcome yet.