#nav {
	font-family:
		Inter, Roboto, 'Helvetica Neue', 'Arial Nova', 'Nimbus Sans', Arial,
		sans-serif;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	filter: blur(100px);
}

#container {
	font-family:
		Inter, Roboto, 'Helvetica Neue', 'Arial Nova', 'Nimbus Sans', Arial,
		sans-serif;
	height: 100%;
}

main {
	height: 100%;
	display: flex;
	justify-content: center;
}

#hero {
	display: flex;
	align-items: start;
	flex-direction: column;
	justify-content: center;
	padding: 16px;
	width: 100%;
}

h1 {
	font-size: 22px;
	margin-top: 0.25em;
}

#links {
	display: flex;
	gap: 16px;
}

#links a {
	display: flex;
	align-items: center;
	padding: 10px 12px;
	color: #111827;
	text-decoration: none;
	transition: color 0.2s;
}

#links a:hover {
	color: rgb(78, 80, 86);
}

#links a svg {
	height: 1em;
	margin-left: 8px;
}

#links a.button:hover {
	color: rgb(230, 230, 230);
	box-shadow: none;
}

h2 {
	margin: 0 0 1em;
	font-weight: normal;
	color: #111827;
	font-size: 20px;
}

p {
	color: #4b5563;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.006em;
	margin: 0;
}

#hero h1 .grey {
	opacity: 0.15;
}

/*hamburger*/
.hamburger {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.nav-links {
	width: 100%;
	display: none;
	margin: 0;
}

.nav-links a {
	display: block;
	text-align: left;
	padding: 10px 0;
	text-decoration: none;
	font-size: 1rem;
}

.expanded {
	display: unset;
}

a {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	color: #111827;
	text-decoration: none;
	transition: color 0.2s;
}

a:hover {
	color: rgb(78, 80, 86);
}

a svg {
	height: 1em;
	margin-left: 8px;
}

.hamburger {
	padding-right: 20px;
	cursor: pointer;
}

.hamburger .line {
	display: block;
	width: 30px;
	height: 2px;
	margin-bottom: 10px;
	background-color: #111827;
}

@media screen and (max-width: 768px) {
	#container {
		display: flex;
		flex-direction: column;
	}

	#hero {
		padding-top: 10%;
	}

	#links {
		flex-wrap: wrap;
	}

	#links a.button {
		padding: 14px 18px;
	}

	#news {
		right: 16px;
		left: 16px;
		bottom: 2.5rem;
		max-width: 100%;
	}

	h1 {
		line-height: 1.5;
	}
}

@media screen and (min-width: 768px) {
	.nav-links {
		margin-left: 5em;
		display: block;
		position: static;
		width: auto;
		background: none;
	}

	.nav-links a {
		display: inline-block;
		padding: 15px 20px;
	}

	.hamburger {
		display: none;
	}
}
