Recently I started doing a OnePager Website; I'm having trouble with this div block here "Box-Middle" and "Text-Middle":

I want "Elektro One and Elektroinstallationen, Produkte & Kommunikationstechnik" to be vertically aligned in the white box, but I cant figure it how?
And also I want the text "Elektro One and Elektroinstallationen, Produkte & Kommunikationstechnik" to not have opacity, because it would look better
And also I wanted to do the header list all center
#home {
  background-image: url(bilder/Hintergrund.jpg);
  background-position: center center;
  background-size: cover;
  box-shadow: 0 17px 53px rgba(0, 0, 0, 0.2);
}
#home h1,
h2 {
  margin-top: 25px;
}
#home h1 {
  margin-bottom: auto;
  color: #adadad;
}
#home h2 {
  color: #8a8a8a;
}
#Box-Middle {
  margin-top: 350px;
  width: 100%;
  height: 300px;
  background: white;
}
#home #Box-Middle {
  opacity: 50%;
}<section id="home">
  <hr>
  <div id="Box-Middle">
    <div id="Text-Middle">
      <h1>Elektro One</h1>
      <h2>Elektroinstallationen, Produkte & Kommunikationstechnik</h2>
    </div>
  </div>
</section> 
     
    