I want to center the h4 as well as the button vertically in the center of the page.
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<section class="content">
  <div class="card text-center">
    <div class="card-header">
      <h3 class="card-title">CardHeader</h3>
    </div>
    <div class="card-body" style="height: 300px;">
      <h4>A text above the button</h4>
      <button class="btn btn-primary mt-2 text-center">
      <i class="fa fa-plus mr-1" />
      <span>Add Button</span>
    </button>
    </div>
  </div>
</section> 
     
    