body {
  margin: 0;
  padding: 0;
  background-image: url("Jeffrey.png");
  background-size: 100% auto;      /* Full width, correct aspect */
  background-repeat: no-repeat;
  background-attachment: scroll;   /* IMPORTANT: image scrolls with page */
  background-position: 0px 0px;    /* Will be changed dynamically */
  font-family: Console;
}
}

/* Fixed text that updates as you scroll */
#textOverlay {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: white;
  text-shadow: 2px 2px 5px black;
  z-index: 10;
  transition: opacity 0.2s;
}

/* Scrollable height equal to the image height */
#scrollArea {
  height: 3600px;  /* Jeff.png height */
}