I'm currently developing a web application and I'm facing an issue with centering two bootstrap buttons next to each other on mobile devices. While it works fine on the computer, when I inspect the page on a mobile device, the buttons stack vertically instead of being aligned horizontally. How can I modify the code to ensure that the buttons appear side-by-side on mobile devices as well? Here's the current code snippet:
<div class="container">
<div class="row justify-content-center">
<div class="col-md-4 col-lg-3 text-center">
<a href="#" style="font-size: 18px;" class="btn btn-primary btn-lg mb-3" role="button">Button 1</a>
</div>
<div class="col-md-4 col-lg-3 text-center">
<a href="#" style="font-size: 18px;" class="btn btn-primary btn-lg mb-3" role="button">Button 2</a>
</div>
</div>
</div>