@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,300i|Lato:300,300i|Source+Sans+Pro:200,200i|Ubuntu+Condensed&display=swap');

* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	font-family: 'Ubuntu Condensed', sans-serif;
	-webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
	height: 100%;
    display: table;
	background-color: #fff;
	color: #666;
	font-size: 14px;
}

#Wrapper {
	text-align: center;
    display: table-cell;
    vertical-align: middle;
}

#Header {
	display: none;
}

#Content {
	text-align: center;
	/* overflow: hidden; */
	position: relative;
}
#Content h1#lonely {
	padding: 100px 0 0;
	font-size: 350%;
}
#Content span#lonelyShadow {
	border-radius: 5px;
	height: 10px;
	width: 10px;
	background-color: rgba(0,0,0,0.05);
	display: inline-block;
	-webkit-transform: scale(20,1);
	-moz-transform: scale(20,1);
	transform: scale(20,1);
	-webkit-transition: 2s;
	-moz-transition: 2s;
	transition: 2s;
}
#Content span#lonelyShadow.big {
	background-color: rgba(0,0,0,0.04);
	-webkit-transform: scale(21,1);
	-moz-transform: scale(21,1);
	transform: scale(21,1);
}
#Footer {
	margin: 5px 0;
	font-size: 90%;
	text-align: center;

	-webkit-animation: fadeIn 1s ease 1.5s;
	-moz-animation: fadeIn 1s ease 1.5s;
	-o-animation: fadeIn 1s ease 1.5s;
	animation: fadeIn 1s ease 1.5s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}
#Footer span {
	display: inline-block;
}
#Footer a {
	color: #bbb;
	font-weight: bold;
}
#Footer a:hover {
	color: #ddd;
}
#InteractiveText {
	margin-top: -30px;
	font-family: 'Josefin Sans', Helvetica, sans-serif;
	font-size: 54px;
	text-align: center;
	text-indent: 0;
	text-shadow: none;
	font-weight: 300;

	-webkit-animation: fadeIn 1s ease 1s;
	-moz-animation: fadeIn 1s ease 1s;
	-o-animation: fadeIn 1s ease 1s;
	animation: fadeIn 1s ease 1s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}
#InteractiveText span {
	display: inline-block;
}
#LogoLanding {
	background-image: url(../img/logo_landing.png);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;

	height: 220px;

	position: relative;
}

h1, h2, h3, h4, h5, h6 {
	margin: 10px 20px 0;
}

p {
	margin: 5px 20px;
}

dl, ol, ul {
	margin: 5px 20px 5px 40px;
}

ul {
	list-style: square;
}

blockquote {
	margin: 20px 40px;
	font-style: italic;
}

pre {
	margin: 5px 20px;
	border-top: 1px solid rgba(0,0,0,0.3);
	border-right: 1px solid rgba(255,255,255,0.3);
	border-bottom: 1px solid rgba(255,255,255,0.3);
	border-left: 1px solid rgba(0,0,0,0.3);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	padding: 20px;
	background-color: rgba(0,0,0,0.2);
}

a {
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #888;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}