/** This is used to create a remainder in container, so the footer is at the bottom **/


html{
	height: 100%;
	margin: 0px;
}

body{
	height: 100%;
	display: flex;
	flex-flow: column;
}

body > header{
	flex: 0 1 auto;
}

body > .container{
	flex: 1 1 auto;
}


body > footer{
	flex: 0 1 102px;
}
