Hi I will like to know how can I align an h2 and p horizontally and vertically.
.bg-text {
 position: relative;
 top: 50%;
 margin: 0 auto;
 transform: translateY(-50%);
  text-align: center;
  background-color: rgba(255, 255, 255, .7);
  }
  span {
 display: block;
 }
<section class="Home">
  <h1>TEXT</h1>
  <p>More Text</p>
</section>
 
     
     
     
     
    