/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
body {
    background-image: url('../../images/car-icons.gif');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /*background-size: contain;
        height: auto;*/
    /*background-position: center;*/
    background-clip:content-box;
}

body {
    padding: 500px 15px 15px 15px;
    font-family: "open sans";
    color: #444444;
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
    body {
        /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
        background-image: url('../../images/car-icons.gif');
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        background-clip:content-box;
    }
}
