html {
  min-height: 100%;
  transition: 3s;
  -webkit-transition: 3s;
}
body {
  height: 100%;
  background-color: black;
}
.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;  
}
.logo {
  position: absolute;
  margin: auto;
  top: 0;
  max-width: 50%;
  z-index: 99;
  left: 0;
  right: 0;
  bottom: 0;
}
.slideshow > figure {
  -webkit-animation: imageAnimation 24s linear infinite 0s;
  -moz-animation: imageAnimation 24s linear infinite 0s;
  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;
  margin: 0;
}

.slideshow > figure:nth-child(1) { background-image: url('../images/outlaw_snax_bg_1.jpg'); }

.slideshow > figure:nth-child(2) {
  animation-delay: 6s;
  background-image: url('../images/outlaw_snax_bg_2.jpg');
}

.slideshow > figure:nth-child(3) {
  animation-delay: 12s;
  background-image: url('../images/outlaw_snax_bg_3.jpg');
}

.slideshow > figure:nth-child(4) {
  animation-delay: 18s;
  background-image: url('../images/outlaw_snax_bg_4.jpg');
}

@-webkit-keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
  }
  12.5% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes imageAnimation {
  0% {
    opacity: 0;
    -moz-animation-timing-function: ease-in;
  }
  12.5% {
    opacity: 1;
    -moz-animation-timing-function: ease-out;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  12.5% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
