I want to include a button below some text in the contact section. The text reads "get in touch" at the center of the page, but when I add a button it appears under the text and aligned to the left. I need it to be centered on the page beneath the text.
<section class="contact" id="contact">
<div class="container">
<div class="row">
<div class="col-md-6 p-lg-6 mx-auto my-5">
<h1 class="text-capitalize text-center about-banner">
get <strong class="text-center about-banner-two">in touch</strong>
</h1>
<a href="#" class="btn btn-lg btn-secondary text-uppercase">contact</a>
</div>
</div>
</div>