Would you happen to know how I can perfectly center text and image together? Below is the code snippet I've been working on:
<div class="container my-5">
<div class="row py-4 justify-content-center">
<div class="col-lg-4 mb-4">
<h1 class="text-dark font-weight-bold mb-3">
We're glad you're here
</h1>
<p class="mb-4">Our main focus lies in providing top-notch design and development solutions</p>
</div>
<div class="col-lg-8"><img src='assets/about.png' class="w-80"></div>
</div>
</div>
I attempted to use justify-center, offset, ml-x but sadly, none seem to do the trick. I even went through the bootstrap documentation thoroughly without finding a solution. Would appreciate any guidance or tips!