#titleBox
{
  /* Keeps header in place*/
  position: fixed; 
  top: 0;
  left: 0;
  z-index: 1;
  
  width: 100%;
  height: 22vh;
  
  font-size: 2vh;
  font-family: Merriweather, serif;
  text-align: center;
  color: white;
  background-color: #0450C3; 
}



#content
{
  /* This will position it relative to the top property, the parent property*/
  position: absolute; 
  top: 22vh;
  margin: 0vh 5vw;
  padding-bottom: 12vh;

}

p
{
  font-size: 2.2vh;
  font-family: "Meatherweather Sans", sans-serif;
}

img
{
  width: 75%;
}

#page-container 
{
  height: 100%;
}