html,
body {
	height: 100%;
}

body {
	background: url("/static/background.jpg");
	/* Image is centered vertically and horizontally at all times */
	background-position: center center;
	/* Image doesn't repeat */
	background-repeat: no-repeat;
	/* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
	background-attachment: fixed;
	/* This is what makes the background image rescale based on its container's size */
	background-size: cover;
	/* Pick a solid background color that will be displayed while the background image is loading */
	background-color: #464646;
}

body:before {
	content: " ";
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
}

.outer {
	display: table;
	position: absolute;
	height: 100%;
	width: 100%;
}

.middle {
	display: table-cell;
	vertical-align: middle;
}

#site-title {
	font-size: 4em;
	color: white;
}

#social-links {
    align-self: auto;
    max-width: 50%;
    /* margin-top: 30px; */
    justify-content: flex-end;
}

.hexagon-content-box {
	text-align: center;
	z-index: 10;
}

.inside-hexagon {
    align-self: center;
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: center;
    vertical-align:middle;
    height: 100%;
}

.break {
	flex-basis: 100%;
	width: 100%;
}

ul {
	list-style-type: none;
	padding-left: 0;
	margin: 0 auto;
	font-size: 60px;
}

li {
	float: left;
	margin-right: 1px;
	padding: 10px;
}

li a {
	display: block;
	padding: 10px;
	border-radius: 2px;
	color: azure;
}

li a>.fab {
	opacity: 0.7;
	-webkit-transition: opacity 0.5s ease;
	-moz-transition: opacity 0.5s ease;
	-o-transition: opacity 0.5s ease;
	-ms-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
}

li a:hover>.fab {
	opacity: 1;
}

.hexagon {
	position: relative;
	width: 600px;
	height: 346.41px;
	background-color: #1c3b4f;
	margin: 86.60px 0;
	margin-left: auto;
	margin-right: auto;
	border-left: solid 5px #ffffffa1;
	border-right: solid 5px #ffffffa1;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.65);
}

.hexagon:before,
.hexagon:after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 424.26px;
	height: 424.26px;
	-webkit-transform: scaleY(0.5774) rotate(-45deg);
	-ms-transform: scaleY(0.5774) rotate(-45deg);
	transform: scaleY(0.5774) rotate(-45deg);
	background-color: inherit;
	left: 82.8680px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.65);
}

.hexagon:before {
	top: -212.1320px;
	border-top: solid 7.0711px #ffffffa1;
	border-right: solid 7.0711px #ffffffa1;
}

.hexagon:after {
	bottom: -212.1320px;
	border-bottom: solid 7.0711px #ffffffa1;
	border-left: solid 7.0711px #ffffffa1;
}

.hexagon span {
	position: absolute;
	top: 2.8867513459481287px;
	left: 0;
	width: 590px;
	height: 340.6367px;
	z-index: 2;
	background: inherit;
}