:root {
	--bg-0: #101014;

	--fg-0: #b6bfcc;
}

body {
	font-family: Roboto;
	margin: 0;
	background-color: var(--bg-0);
}

#top-bar {
	display: flex;
	flex-flow: column;
	height: 100vh
}

#nav-bar {
	position: sticky;
	top: 0;
	margin: 2em 0 2em;
	text-align: center;
	//box-shadow: 0 0 1em #000f;
}

#nav-bar > div {
	background-color: var(--bg-0);
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

#nav-bar > nav > a:first-child {
	text-decoration: none;
}

#nav-bar > nav > a:first-child > h1 {
	display: inline-block;
	margin: 0;
	font-family: Montserrat;
	font-size: 4em;
	font-weight: 300;
	color: var(--fg-0);
	text-align: center;
}


#header {
	height: 100vh;
	box-sizing: content-box;
	display: grid;
}

#header > #header-image {
	max-height: 100%;
	max-width: 100%;
	margin: 0 auto;
	box-shadow: 0 0 2em #000;
}

main {
	background-color: #32333c;
	text-align: center;
}

#about {
	position: relative;
	padding-top: 2em;
}

#about > div {
	background: linear-gradient(#0000, #00000030);
	width: 100%;
	height: 1em;
	position: absolute;
	top: 0;
	transform: translateY(-100%);
}

#about > h1 {
	text-align: center;
	font-family: Montserrat;
	font-size: 2em;
	font-weight: 400;
	color: #c1c1c1;
}

#about > p {
	text-align: center;
	font-size: 1.3em;
	font-weight: 300;
	color: #c1c1c1;
}


#more-info > a {
	transition: box-shadow 0.2s;
	text-decoration: none;
	width: 15em;
	height: 5em;
	margin: 5em auto;

	border-radius: 2.5em;
	background-color: #1b1d23;
	box-shadow: inset 0 0 0.1em #00000070;

	display: inline-flex;
	justify-content: center;
	align-items: center;
}

#more-info > a:hover {
	box-shadow: inset -0 0 1em #000000e0;
}

#more-info > a:hover > svg {
	fill: #c1c1c1c0;
}

#more-info > a:hover > p {
	color: #c1c1c1c0;
}

#more-info > a > svg {
	transition: fill 0.2s;
	fill: #c1c1c1a0;
	width: 3em;
	height: 3em;
	padding: 0.5em;
	min-height: 16px;
	min-width: 16px;
}

#more-info > a > p {
	transition: color 0.2s;
	margin: 0;
	font-weight: 400;
	font-size: 1.3em;
	padding: 0.5em;
	color: #c1c1c1a0;
}
