/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
body {
  background-image: url(images/covert-musk.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #464646;
}

@media only screen and (max-width: 767px) {
  body {
    background-image: url(images/covert-musk-mobile.webp);
    background-attachment: scroll;
    background-size: auto 95%;
    background-position: center center;
    background-repeat: no-repeat;
  }
}