I am trying to align a line of text and a Bootstrap button, vertically and horizontally. The height of the div is set using vh. I know there are other answers for this question on here, but I couldn't get them to properly center.
#centertext {
  text-align: center;
  height: 30vh;
}<div class="container" id="centertext">
  <h4> Want to download a more detailed version of my resume?</h4>
  <a href="#" class="btn btn-primary">
    <span class="glyphicon glyphicon-file"></span>     Download
  </a>        
</div> 
     
     
     
     
    