body, html {
	padding: 0;
	margin: 0;
	height: 100%;
}
body {
	color: #3c4c50;
	font-size: 16px;
	text-align: center;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

	display: flex;
	align-items: center;
	justify-content: center;
	
	background-color: white;
	background-image: url(../images/logo.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 400px;
}
#logo {
	width: 280px;
	height: 280px;
	background-image: url(../images/logo.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0 auto;
}

@media (max-width: 375px) {
    body {
        background-size: 200px;
    }
	#logo {
    	width: 320px;
    	height: 320px;
	}
} 