* {
  padding: 0;
  margin: 0
}


body {
  background-color: #000000;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0px;
  color: #ffffff;
  // text-shadow: 2px 2px 15px rgba(0,0,0,0.2);
}

h1 {
  color: #ffbf00;
  font-size: calc(1.3rem + 2vmin);
  font-weight:normal;
}

h2 {
  color: rgba(255,255,255,0.5);
  font-size: calc(0.8rem + 1vmin);
  font-weight:normal;
  line-height: 10px;
  display:block
}

ul {
  list-style-type: none;
  font-size: calc(0.8rem + 1vmin);
  line-height:120%
}

/* unvisited link */
a:link {
  color: #ffffff;
  text-decoration: none
}

/* visited link */
a:visited {
  color: #ffffff;
  text-decoration: none
}

/* mouse over link */
a:hover {
  color: #ffbf00;
  text-decoration: none
}

/* selected link */
a:active {
  color: #ffffff;
  text-decoration: none
}




.container { position:absolute; top:30px; left:30px; width:50%; text-align:left; z-index:999;}

.backimage { position:absolute; top:0px; left:0px; width:50%; text-align:left; z-index:998;}

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

.crossfade > figure:nth-child(1) {
  background-image: url('img/001.jpg');
}
.crossfade > figure:nth-child(2) {
  animation-delay: 6s;
  background-image: url('img/002.jpg');
}
.crossfade > figure:nth-child(3) {
  animation-delay: 12s;
  background-image: url('img/003.jpg');
}
.crossfade > figure:nth-child(4) {
  animation-delay: 18s;
  background-image: url('img/004.jpg');
}
.crossfade > figure:nth-child(5) {
  animation-delay: 24s;
  background-image: url('img/005.jpg');
}
.crossfade > figure:nth-child(6) {
  animation-delay: 30s;
  background-image: url('img/006.jpg');
}
.crossfade > figure:nth-child(7) {
  animation-delay: 36s;
  background-image: url('img/007.jpg');
}
.crossfade > figure:nth-child(8) {
  animation-delay: 42s;
  background-image: url('img/008.jpg');
}
.crossfade > figure:nth-child(9) {
  animation-delay: 48s;
  background-image: url('img/009.jpg');
}
.crossfade > figure:nth-child(10) {
  animation-delay: 54s;
  background-image: url('img/010.jpg');
}


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

