*, *::before, *::after {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	display: grid;
	grid-template-rows: max-content auto;

	> main {
		display: grid;
		grid-template-rows: max-content 1fr;

		#assignment {
			min-height: 100vh;
		}
	}
}
