@media screen and (max-width:740px) {
	html {
		width:100%;
		height:100%;
	}
	body {
		display:flex;
		flex-direction:column;
		width:100%;
		height:100%;
	}
}
@media screen and (min-width:740px) {
	html {
		width:100%;
		height:100%;
	}
	body {
		width:auto;
		height:100%;
	}
}
@media print {
	aside {
		display:none;
	}
}