body {
  margin: 0;
  padding: 0;
  height: 100vh; /* Sets the height to 100% of the Viewport Height */
  width: 100vw;  /* Sets the width to 100% of the Viewport Width */

  background-image: url('images/JKAM-logo1-1920x1080.png');
  background-position: center; /* Keeps the focus of the image centered */
  background-repeat: no-repeat;
  background-size: cover;      /* The magic property that scales to fit */
  background-attachment: fixed; /* Keeps the image static while content scrolls */
}
