*{
	box-sizing:border-box;
}

html, body {
	width: 100%;
	height: 100%;
	font-size: 85%;
	color: white;
}

body{
	margin:0;
	padding:0;

	display:-webkit-flex;

	display:-ms-flexbox;

	display:flex;
	-webkit-flex-direction:column;
	    -ms-flex-direction:column;
	        flex-direction:column;
}

img{
	width: 100%;
}



header, footer{
	-webkit-flex: 0 0 auto;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}


@media (min-width: 460px) {
	html, body{
		font-size: 90%;
	}
}

@media (min-width: 767px) {
	html, body{
		font-size: 100%;
	}
}
@media (min-width: 1020px) {
	html, body{
		font-size: 110%;
	}
}