html {
	height: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	height: 100%;
	min-height: 500px;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	background-color: #2C3D4F;
	color: #ffffff;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	justify-content: center;
	align-items: center;
}

* {	
	-webkit-transition: all .25s cubic-bezier(0.21, 0.76, 0.35, 0.9); 
    transition:         all .25s cubic-bezier(0.21, 0.76, 0.35, 0.9);
}

img {
	display: inline-block;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}

h1 {
	font-size: 48px;
	font-weight: 300;
	margin: 20px 0px;
}

a,
a:link,
a:visited {
	text-decoration: none;
	color: inherit;
}

#center-container {
	position: relative;
	width: 100%;
	max-width: 680px;
	min-width: 320px;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;

	justify-content: center;
	align-items: center;

	animation-duration: 30s;
}

svg {
	width: 60vw;
	height: 60vw;
	min-width: 276px;
	min-height: 276px;
	max-width: 400px;
	max-height: 400px;
	display: block;
}

#divider {
	height: 1px;
	width: 80%;
	margin-top: 20px;
	background: -moz-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 66%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 66%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 66%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

#social {
	height: 75px;
}

#social > .social-cont {
	width: 75px;
	padding: 20px 0px;
	display: block;
	float: left;
	text-align: center;
}

#social > .social-cont > i.fa {
	display: block;
	font-size: 30px;
}

#social > .social-cont:hover {
	color: #BEC3C7;
}

#menu {
	position: absolute;
	background-color: rgba(255,0,0,.4);
	width: 100%;
	height: 100%;
}