html {
	height: 100%;
}

body {
	font-family: 'Roboto Condensed', 'Myriad Pro', 'Gill Sans', 'Gill Sans MT', 'Helvetica', sans-serif;
	color: #fff;
	line-height: 1.5;
	word-break: break-word;
	-webkit-font-smoothing: antialiased;
	
	overflow: hidden;
	
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

h1 {
	font-size: 4.2em;
	font-weight: 300;
	margin: 0;
	
}

h2 {
	font-size: 2em;
	font-weight: 300;
	margin: 0;
}

h1.headline {
	text-shadow: 0 2px 72px #000000;
	opacity: 0;
	
	-webkit-transform: translate(0px, 120px);
	-webkit-animation: header-animation;
	-webkit-animation-duration: 1000ms;
	-webkit-animation-fill-mode: forwards;
	-webkit-timing-function: ease;		
}

h2.headline-desc {
	opacity: 0;
	
	-webkit-transform: translate(0px, 120px);
	-webkit-animation: header-desc-animation;
	-webkit-animation-duration: 1000ms;
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-delay: 600ms;
	-webkit-timing-function: ease;
}

strong {
	font-family: Arial, 'Helvetica';
	font-weight: bold;
	font-style: italic;
	color: #fde8e2;
}

@-webkit-keyframes header-animation {
	100% {
		opacity: 1;
		-webkit-transform: translate(0px, 0px);
	}	
} 

@-webkit-keyframes header-desc-animation {
	100% {
		opacity: 0.85;
		-webkit-transform: translate(0px, 0px);
	}	
} 

/*Background*/

div#background {
	width: 100%;
	height: 100%;
	position: fixed;

	padding-left: 40px;
	margin-left: -40px;
	padding-right: 40px;
	margin-right: -40px;

	padding-bottom: 200px;
	margin-bottom: -200px;
	background: url(images/landing.jpg);
	background-size: cover;

	-webkit-filter: blur(16px);
	-webkit-transform: translate(0px, -100px);
	z-index: -1;
}

/*Containers*/

div#container {
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	-webkit-flex-direction: column;
	height: 100%;
}

div.buttons-container{
	margin-top: 80px;
	
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;	
}

/*Icon links*/

a {
	font-family: 'Myriad Pro', 'Gill Sans', 'Gill Sans MT', 'Helvetica', sans-serif;
	color: #fff;
}

a.animated-link {
	opacity: 0;
	-webkit-transform: translate(40px, 40px);
	-webkit-animation: link-button-animation;
	-webkit-animation-duration: 600ms;
	-webkit-animation-fill-mode: forwards;
	-webkit-timing-function: ease-in-out;		
}

@-webkit-keyframes link-button-animation {
	100% {
		opacity: 1;
		-webkit-transform: translate(0px, 0px);
	}	
} 

a.animated-link-1 {
	-webkit-animation-delay: 1000ms;
}

a.animated-link-2 {
	-webkit-animation-delay: 1200ms;
}

a.animated-link-3 {
	-webkit-animation-delay: 1400ms;
}

a.animated-link-4 {
	-webkit-animation-delay: 1600ms;
}

a.animated-link-5 {
	-webkit-animation-delay: 1800ms;
}

a.link-button {
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	-webkit-flex-direction: column;

	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-left: 8px;
	margin-right: 8px;
	
	font-size: 1.5em;
	font-weight: normal;
	text-decoration: none;
	
	width: 160px;
	height: 160px;
	position: relative;
}

a.link-button > img {
	display: block;
	width: 74px;
	height: 74px;
}

a.link-button > span {
	vertical-align: center;
	margin-top: 15px;
	display: block;
	text-align: center;
	color: #fff;	
}

a.link-button:hover {
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.1);	
}

/*Text links*/

a.text-link-button {
	display: inline-block;
	padding-left: 18px;
	padding-right: 18px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-left: 8px;
	margin-right: 8px;
	
	color: #fff;
	font-size: 1.5em;
	font-weight: normal;
	text-decoration: none;
	
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 12px;
	box-shadow: 0px 2px 13px rgba(0, 0, 0, 0.4);

	background: repeating-linear-gradient(
	  -45deg,
	  rgba(255, 255, 255, 0.2),
	  rgba(255, 255, 255, 0.2) 3px,
	  rgba(255, 255, 255, 0.3) 3px,
	  rgba(255, 255, 255, 0.3) 4px
	);
}

a.text-link-button:hover {
	background: repeating-linear-gradient(
	  -45deg,
	  rgba(255, 255, 255, 0.5),
	  rgba(255, 255, 255, 0.5) 3px,
	  rgba(255, 255, 255, 0.6) 3px,
	  rgba(255, 255, 255, 0.6) 4px
	);
}

a.blog-button {
	margin-top: 60px;
}