I have two columns inside a row in Bootstrap 4. If I try to align vertically the content using align-items-center on the row, or align-self-center on the col, the h4 is centered but the background is not full height. Here is a pen https://codepen.io/geo555/pen/PyaLbE
<div class="container">
<div class="row no-gutters justify-content-center">
<div class="col-sm-4">
<img src="https://via.placeholder.com/400X400" class="img-fluid">
</div>
<div class="col-sm-4 text-center bg-dark text-white align-self-center">
<h4>Awesome desk</h4>
</div>
</div>
</div>