body {
    background-color: black;
}


.slideshow {
  list-style-type: none;
}

/** SLIDESHOW **/
.slideshow,
.slideshow:after { 
    top: -16px; /*Not sure why I needed this fix*/
	position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: -1; 
    filter: brightness(25%);
}

.slideshow li span { 
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 90s linear infinite 0s; 
}



.slideshow li:nth-child(1) span { 
    background-image: url("screenshots/TMRV_Screenshot1.png"); 
}
.slideshow li:nth-child(2) span { 
    background-image: url("screenshots/TMRV_Screenshot2.png");
    animation-delay: 10s; 
}
.slideshow li:nth-child(3) span { 
    background-image: url("screenshots/TMRV_Screenshot3.png");
    animation-delay: 20s; 
}
.slideshow li:nth-child(4) span { 
    background-image: url("screenshots/TMRV_Screenshot4.png");   
    animation-delay: 30s; 
}
.slideshow li:nth-child(5) span { 
    background-image: url("screenshots/TMRV_Screenshot5.png");
    animation-delay: 40s; 
}
.slideshow li:nth-child(6) span { 
    background-image: url("screenshots/TMRV_Screenshot6.png");
    animation-delay: 50s; 
}
.slideshow li:nth-child(7) span { 
    background-image: url("screenshots/TMRV_Screenshot7.png");
    animation-delay: 60s; 
}
.slideshow li:nth-child(8) span { 
    background-image: url("screenshots/TMRV_Screenshot8.png");
    animation-delay: 70s; 
}
.slideshow li:nth-child(9) span { 
    background-image: url("screenshots/TMRV_Screenshot9.png");
    animation-delay: 80s; 
}



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


@keyframes titleAnimation { 
    0% { opacity: 0 }
    8% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}


.no-cssanimations .cb-slideshow li span {
	opacity: 1;
}


.center {
  display: block;
  margin: auto;
  width: 40%;
}
