body {
	width: 800px;
	margin: auto; 
	font-family: sans-serif;
	line-height: 1.5em;
	background-color: aliceblue; 
	color: saddlebrown;
}

header, footer {
	background-color: antiquewhite;
}
h1 {
	font-size: 30px;
	margin-top: 20px;
	margin-bottom: 20px;
	color: orangered;
}
h2 {
	margin-top: 20px;
	font-size: 24px;
	color: orange;
}
p {
	margin-top: 20px;
	size: 14px;
}
#container {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
#assignments {
	margin-left: 20px;
}
#top {
	display: grid;
	grid-template-columns: 1fr 2fr;
}
