Currently, I am attempting to design a container that includes an image on the left, a title and description in the center, and a button on the right. However, I am facing difficulties centering the image in the first column and the button in the last column. Can anyone provide insight into why this may be happening?
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container m-5 mx-auto" style="background-color: gray;">
<div class="row">
<div class="col-md-2">
<img class="rounded mt-10" style="height: 75px;" src="https://cdn.mos.cms.futurecdn.net/otjbibjaAbiifyN9uVaZyL.jpg" />
</div>
<div class="col-md-8">
<h5 class="card-title mt-2">Title</h5>
<p>Description</p>
</div>
<div class="col-md-2">
<button class="btn btn-primary">Button</button>
</div>
</div>
</div>