html, body {
	background-color: #1C1C1C;
}

a {
  text-decoration: none;
}

main {
	/* display: flex;
	justify-content: center;
	align-items: center; */
}

.icon, svg {
    width: 2em;
    height: 2em;
    vertical-align: -0.125em;
	fill: #808080;
  }

#content {
	width: 620px;
	max-width: -webkit-calc(100vw - 10px);
	max-width: calc(100vw - 10px);
	text-align: center;
	background-color: #eee;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#image {
	background: url("../images/logo.png");
	background-size: cover;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	width: 120px;
	height: 120px;
	margin: -60px auto 20px;
}

#name-headline {
	padding-left: 20px;
	padding-right: 20px;
	font-family: 'Courier New', Courier, monospace
}

#name-headline h1 {
	font-size: 20px;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	margin: 0;
	color: #333;
}

#name-headline h2 {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
	margin: 0;
}

#body-content {
	padding: 20px 0 20px;
}

ul {
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

li {
	opacity: 1;
	-webkit-transition: opacity .15s ease-in-out;
	transition: opacity .15s ease-in-out;
	will-change: opacity;
	padding: 0;
	margin: 12.5px;
	cursor: pointer;
	display: block;
	-webkit-font-smoothing: antialiased;
}

li:hover {
	opacity: 0.5;
}