html{
    /* This image will be displayed fullscreen */
    background:url('logo.png') no-repeat center center;

    /* Ensure the html element always takes up the full height of the browser window */
    min-height:100%;

    /* The Magic */
    background-size:contain;
}

body{
    /* Workaround for some mobile browsers */
	text-align: center;  
    min-height:100%;
}
