body {
	background: white;
	font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	margin: 0;
	padding: 2rem;
	color: #333;
	max-width: 1400px;
	margin: 0 auto;
}
h1 {
	color: #3498db;
	font-size: 1.8rem;
	margin: 0;
	position: sticky;
	top: 1rem;
}

a {
	display: block;
	color: #555;
	text-decoration: none;
	padding: 0.8rem;
	margin: 0.5rem 0;
	border-radius: 6px;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

a:hover {
	color: #3498db;
	background-color: #eee;
	border: 1px solid #3498db;
	transition: .5s background-color ease-in;
}

pre {
	background: #f8f9fa;
	padding: 1rem;
	border-radius: 6px;
	border-left: 4px solid #3498db;
	grid-column: 1 / -1;
}
pre > span {
	font-family: monospace;
}

.menu {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 2rem;
	background: white;
	border-radius: 0px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.1);
	padding: 1.5rem;
	margin-bottom: 2rem;
	transition: transform 0.2s ease;
}

.menu:hover {
	transform: translateY(-4px);
	box-shadow: 6px 3px 15px #444;
}

.menu-links {
	display: flex;
	flex-direction: column;
}
