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

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

* {
	box-sizing: border-box;
}

html, body {
	font-family: Arial, sans-serif;
	font-weight: normal;
	font-size: .9375rem;
	text-align: center;
	color: #999;
	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;
}

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

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

a, a:hover, img, img:hover {
	transition: all 0.15s linear;
	-webkit-transition: all 0.15s linear;
}

button.btn {
	font-family: Arial, sans-serif;
	background-color: #333;
	padding: 1rem;
	border-radius: .5rem;
	border: 0 none;
	color: white;
	cursor: pointer;
	
	-webkit-appearance: none !important; 
	-moz-appearance: none !important;
	-ms-appearance: none !important;
	-o-appearance: none !important;
	appearance: none !important;
}

button.btn:hover {
	background: #222
}

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

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

h1, h2, h3 {
	margin-top: 1vw;
	margin-bottom: 1vw;
}

h1 {
	font-size: 2.875rem;
}

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

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

header {
	flex-wrap: wrap;
	padding: 0 1rem;
	-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: 12.5rem;
	width: 100%;
	height: auto;
	margin: 40px auto;
}

#index section a img {
	max-width: 3.5rem;
	width: 100%;
	height: auto;
	border: 2px solid #333;
	border-radius: 100%;
	margin: 1.5rem .5rem;
}

#content-wrapper {
	padding: 1rem;
	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: 2rem 1rem;
}

footer a {
	margin: 0 .5rem;
}

@media (max-width:960px) {

}