@charset "UTF-8";
/* CSS Document */

* {
  padding: 0;
  margin: 0
}

* {-webkit-font-smoothing: antialiased;}

body {
  background-color: #000000;
}

p {
	color:#333;
	font-size:14px;
	font-weight:300;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

h1 {
	color:#FFF;
	font-size:32px;
	font-weight:300;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.firefox h1{
	font-weight:200;
}
	
.title h1{
	font-size:31px;
	text-align:center;
	text-transform:uppercase;
	line-height:normal;
}

.title{
	padding-bottom:10px;
	max-width:500px;
	margin:auto;
}

.cursorDefault h1{
	cursor:default;
}

.center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index:100;
  width:80%;
  padding-bottom:50px;
}

.center a{
	padding:10px;
	color:#FFF;
	font-size:16px;
	font-weight:300;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	line-height:2;
}

.firefox .center a{
	font-weight:200;
	letter-spacing: 1px;
}

nav{
	display:block;
}

#navigation_intro{
	width:100%;
	margin:auto;
	text-transform:uppercase;
	text-align:center;
}

#navigation_intro a{
	opacity:0;
}

.title{
	display:none;
}


/*----------------------------------------  LINKS - TITLE  */

a:link {
	text-decoration: none;
	color: #FFF;
}
a:visited {
	text-decoration: none;
	color: #FFF;
}
a:hover {
	text-decoration: none;
	color: #999;
}
a:active {
	text-decoration: none;
	color: #888;
}

/*.overlayForText {
	display: block;
	background-color: #000;
	position: fixed;
	width: 100%; 
	height: 100%;
	z-index: 1;
	opacity: 0.6;
}*/

/* Source: http://www.cssscript.com/css-only-crossfading-background-slideshow/ */

.crossfade > figure {
  animation: imageAnimation 30s linear infinite 0s;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center center;
  height: 100%;
  left: 0px;
  opacity: 0;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: -1;
}

.crossfade > figure:nth-child(1) {
  background-image: url('../images/intro/1.jpg');
}
.crossfade > figure:nth-child(2) {
  animation-delay: 6s;
  background-image: url('../images/intro/2.jpg');
}
.crossfade > figure:nth-child(3) {
  animation-delay: 12s;
  background-image: url('../images/intro/3.jpg');
}
.crossfade > figure:nth-child(4) {
  animation-delay: 18s;
  background-image: url('../images/intro/4.jpg');
}
.crossfade > figure:nth-child(5) {
  animation-delay: 24s;
  background-image: url('../images/intro/5.jpg');
}

@keyframes imageAnimation {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  8% {
    animation-timing-function: ease-out;
    opacity: 1;
  }
  17% {
    opacity: 1
  }
  35% {
    opacity: 0
  }
  100% {
    opacity: 0
  }
}