My Bootstrap card has an image in the second column that looks great on desktop, but not so much on mobile.
<div class="mt-5 container card w-100">
<div class="row">
<div class="col">
<div class="card-body">
<h4 class="card-title">Card-title</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="card-link">Card link</a>
</div>
</div>
<div class="col">
<img class="img-fluid img-responsive" src="trees.jpg">
</div>
</div>
</div>
The image is displayed differently on phone and desktop: https://i.sstatic.net/CUwSz.jpg
Can someone assist me with this issue?