* {
	font-family: 'Work Sans', sans-serif;
	color: white;
	font-size: 1em;
}

h1,h2 {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	text-align: center;
}

h1 {
	color: DeepPink;
	font-size: 3em;
}

h2 {
	color: DeepPink;
	font-size: 1em;
}

#footer {
	text-align: center;
	padding-bottom: 2vh;
	color: DeepPink;
}

#wrapper {
	align-self: center;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	margin-left: 2.5vw;
	margin-right: 2.5vw;
}

#content {
	flex: 1;
}

body {
	background-color: #222222;
}

nav {
	width: 100%;
	text-align: center;
}

nav>ul {
	padding: 0px;
}

nav>ul>li {
	display: inline-block;
}

nav>ul>li>a {
	display: inline-block;
	padding: 2px;
	margin: 5px;
	text-decoration: none;
	border-bottom: solid white 2px;
	color: white;

}

.current {
	color: DeepPink;
	text-decoration: none;
	border-bottom: solid DeepPink 2px;
}

nav>ul>li>a:hover {
	color: DeepPink;
	text-decoration: none;
	border-bottom: solid DeepPink 2px;
}