* {
  padding: 0;
  margin: 0
}

body {
  background-color: #000000;
}


html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.crossfade {
	z-index: 0;
}


.crossfade > figure {
  animation: imageAnimation 24s 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('https://miketjioe.ca/images/uploads/splash/MikeTjioe_Food_ManRay_splash.jpg');
}
.crossfade > figure:nth-child(2) {
  animation-delay: 4s;
  background-image: url('https://miketjioe.ca/images/uploads/splash/MikeTjioe_MadebyMarble_splash.jpg');
}
.crossfade > figure:nth-child(3) {
  animation-delay: 8s;
  background-image: url('https://miketjioe.ca/images/uploads/splash/MikeTjioe_OCS_Bongs_splash.jpg');
}
.crossfade > figure:nth-child(4) {
  animation-delay: 12s;
  background-image: url('https://miketjioe.ca/images/uploads/splash/MikeTjioe_LoseTheGainCookbook_Drinks_splash.jpg');
}
.crossfade > figure:nth-child(5) {
  animation-delay: 16s;
  background-image: url('https://miketjioe.ca/images/uploads/splash/MikeTjioe_NuevoLiving_splash.jpg');
}
.crossfade > figure:nth-child(6) {
  animation-delay: 20s;
  background-image: url('https://miketjioe.ca/images/uploads/splash/MikeTjioe_NuevoLiving-BlushBrook_splash.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
  }
}

