@media screen and (max-width: 412px) {
	.grid-container {
		grid-template-areas: "header"
							 "content"
							 "nav"
							 "footer";
		grid-template-rows: 7em 1fr auto 4em;
	}
}

