https://i.sstatic.net/Dqywt.png
I have implemented a card similar to the one displayed on my homepage, but I would like it to be aligned left and take up less horizontal space. Additionally, I want the text to wrap around the card rather than being completely separated, as shown in the image below.
https://i.sstatic.net/dpIAL.png
Here is the current code for the card. I am unsure whether the changes need to be made in the HTML or the .css file.
<div class="col-md-4 text-center offset-4">
<div class="card">
<div class="card-body">
<img src="images/960px-Reality_check_ESA384313.jpg" width="250" height="180" alt="Man Wearing VR Headset" />
<hr>
<p> Researchers with the European Space Agency in Darmstadt, Germany, equipped with a VR headset and motion controllers, demonstrating how astronauts might use virtual reality in the future to train to extinguish a fire inside a lunar habitat. </p>
<a class="nav-link" href="tech1.html">Learn More About VR Tech</a>
</div>
</div>
</div>