#title-box
{
  /* Fixes position to the top */
  position: fixed;
  top: 0;
  left: 0;
  /* sets it to be above the image on z axis 1 */
  z-index: 1;
  width: 100%;
  text-align: center;
  background-color: lightgreen;
}

#content
{
  /* sets the position of the image relative to the content box */
  position: absolute;
  top: 120px;
}

