/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
.bodyImg {
    /* Location of the image */
    background-image: url(../Images/Logo.jpg);
    /* Image is centered vertically and horizontally at all times */
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
    .bodyImg {
        /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
        background-image: url(../images/Logo.jpg);
    }
	}