nav {
	display: flex;
	padding: 0.5rem 2rem;
	border-bottom: 1px solid #eee;
	margin-bottom: 2rem;
	align-items: center;
	justify-items: left;
	gap: 0.5rem;
}

nav a {
	color: #eee;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.2rem;
	border: 1px solid #0a0a0a;
	padding: 0.5rem 0.75rem;
	transition: background-color 0.5s ease-out, color 0.5s ease-out;
}

nav a:hover {
	background-color: #eee;
	color: #333;
}
