::selection {
	background: #333;
	color: #fff;
}

::-moz-selection {
	background: #333;
	color: #fff;
}

* {
	box-sizing: border-box;
}

html, body {
	text-align: center;
	font-size: .875rem;
	line-height: 1.5;
	color: #333;
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
	
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

body#index {
	height: 100vh;
	background-position: center center;
	background-size: cover;
}

body#index, header {
	display: flex;
	justify-content: center;
	align-items: center;
}

a {
	text-decoration: none;
	outline: 0 none;
	color: #999;
}

h1, h2, h3, h4, h5, h6, a:hover, strong {
	color: #333;
	line-height: 1.5;
}

p, ul li {
	line-height: 2;
}

#logo {
	display: block;
	max-width: 100px;
	width: 100%;
	height: auto;
	margin: 28px 0;
}

header {
	flex-wrap: wrap;
	padding: 0 28px;
	-webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
}

header a {
	flex-wrap: wrap;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

header a:first-of-type {
	text-align: left;
}

header a:last-of-type {
	text-align: right;
}

#index #logo {
	max-width: 200px;
	width: 100%;
	height: auto;
	margin: 40px auto;
}

#index section a img {
	max-width: 50px;
	width: 100%;
	height: auto;
	border: 2px solid #333;
	border-radius: 100%;
	margin: 28px 7px;
}

#content-wrapper {
	padding: 28px;
	text-align: left;
}

#index footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	box-shadow: none;
}

footer {
	-webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
}

footer, #index footer {
	padding: 28px;
}

footer a {
	margin: 0 7px;
}