Hey there! I'm facing an issue with my two cards (check out the image below) https://i.sstatic.net/XDWop.png
It seems like the card boxes are not perfectly centered. I've made some adjustments in the code snippet provided. Could you please lend me a hand with this? Your help is greatly appreciated!
<div class="test" style="margin-left: auto; margin-right:auto; text-align: center; position: relative;">
<div class="container-fluid padding" style="margin-left: auto; margin-right:auto;">
<div class="row padding">
<div class="cold-md-4" style="margin-right: 1%; margin-left: 1%; margin-top: 1%; margin-bottom: 1%;">
<div class="card" style="width: 18rem; margin-left: 1%;">
<img class="card-img-top" src="img\festival-tickets\ticket3.png">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<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="btn btn-outline-secondary">Go somewhere</a>
</div>
</div>
</div>
<div class="cold-md-4" style="margin-right: 1%; margin-left: 1%; margin-top: 1%; margin-bottom: 1%;">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="img\festival-tickets\ticket3.png">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<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="btn btn-outline-secondary">Go somewhere</a>
</div>
</div>
</div>
</div>
</div>
</div>