@import url(https://fonts.googleapis.com/css?family=Open+Sans:400|Raleway:300);
@import url('https://fonts.googleapis.com/css?family=Baloo+2:400,700|Oswald:400,700|Roboto+Mono&display=swap');
@import url('https://fonts.googleapis.com/css?family=Baloo+2:400,700|Fjalla+One|Josefin+Sans|Oswald:400,700|Righteous|Roboto+Mono|Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lobster+Two:400,700&display=swap');


html {
  /* Location of the image */
  background-image: url(../images/hand_bg_40.jpg);
  
  /* Image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Image doesn't repeat */
  background-repeat: no-repeat;
  
  /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based on its container's size */
  background-size: cover;
  
  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color:#464646;
  
  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
  html {
    /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
    background-image: url(../images/hand_bg.jpg);
  }
	}