#title-box {
  position: fixed; /*Keeps the box in place*/
  top: 0;/*aligns the box with the top edge of its container (the browser window)*/
  left: 0;/*aligns the box with the left edge of its container (the browser window)*/
  z-index: 1; /*This makes the box appear on top of #content's paragraph text*/
  width: 100%;

  
  font-size: 2.2vh;
  font-family:  Merriweather, serif;
  text-align: center;
  color: white;
  background-color: lightpink;
}

#content {
  position: absolute; /*This lets us position the div relative to the parent div, which we do with the 'top' property below*/
	top: 18vh;
  margin: 0vh 5vw;
  padding-bottom: 12vh;
}

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

#page-container {
  height: 100%;
}

img {
 max-width: 100%; 
}