body {
  body {
    /* Provide image url */
    background: url(/images/[email protected]);
    /* no-repeat for the background img */
    background-repeat: no-repeat;
    /* let image fit entire screen */
    background-size: cover;
    /* Push the image 100px left, 100px down */
    background-position: 100px 100px;
    /* image stay fixed while scolling */
    background-attachment: fixed;
  }
}