* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.logo {
    max-width: 100%;
    height: auto;
    background-image: url( 'images/logo_full.png' );
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media (min-width: 750px) {
	
	body, html {
		background-image: url( 'images/bg.png' );
		background-repeat: repeat-x;
		background-position: center;	
	}
	
	.logo {
		background-image: url( 'images/logo.png' );
	}

}

