body {
	font-family: Hack;
	background-color: rgb(123, 199, 247);
	margin: 0;
	height: 100%;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 1fr;
	grid-template-areas: "header" "main" "footer";
	grid-template-rows: auto 1fr auto;
	min-height: 100vh;
}

header {
	width: 100%;
	text-align: center;
	grid-area: header;
}

main {
	text-align: center;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-area: main;
}

.link {
	text-decoration: none;
	color: black;
}

footer {
	width: 100%;
	text-align: center;
	grid-area: footer;
}

