body {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: monospace;
	font-size: x-large;
}
div {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
a {
	text-decoration: none;
	padding: 12px;
	background-color: #f8f8f8;

	&:hover {
		background-color: #f0f0f0;
	}

	&:active {
		background-color: #e8e8e8;
	}
}
