/* Responsive Full Background Image Using CSS
*/
body {
  background-image: url(background.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color:#464646;
}
 
/* For mobile devices */
@media only screen and (max-width: 767px) {
  body {
    background-image: url(mobile.jpg);
	}
}
