
  
/** Background Image and the ways to show it */
  
body {
  /* Location of the image */
  background-image: url(../images/background.jpg);
  /* Background image doesn't tile */
  background-repeat: no-repeat;
  /* Background image is fixed in the viewport */
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  /* Set a background color that will be displayed
     while the background image is loading */
  background-color: #000000;
}



a {
  background-color: transparent; }

