body {
  background-color: #000;
}

h1 {
  text-align: center;
  opacity: 1;
  color: yellow;
  font-family: garamond;
}

h2 {
  font-family: garamond;
  color: #3498db;
}

h3 {
  text-align: center;
  opacity: 1;
  color: white;
}

h4 {
}

h5 {
  text-align: center;
  opacity: 1;
  color: white;
}

h6 {
  text-align: center;
  opacity: 1;
  color: #ff00ff;
}

p {
  text-align: justify;
}

#landing-footer {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  height: 120px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
}

#landing-header {
  z-index: 1;
  position: relative;
  text-align: center;
  padding-top: 25vh;
}

#landing-header h1 {
  color: yellow;
}

#shadowme {
  color: yellow;
  font-size: 40px;
  text-shadow:
    -1px  1px 0 #fff,
     1px  1px 0 #fff,
     1px -1px 0 #fff;
    -1px -1px 0 #fff;
} 

.strokeme {
  text-shadow:
    1px 1px 0px #ffffff;
}

.slideshow { 
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.slideshow li:nth-child(1) { 
  background-image: url(../../static/img/MLSC_tov2012s.jpg);
  animation-delay: 40s; 
}
.slideshow li:nth-child(2) { 
  background-image: url(../../static/img/MLSC_M11.jpg);
  animation-delay: 30s; 
}
.slideshow li:nth-child(3) { 
  background-image: url(../../static/img/MLSC_NGC6118.jpg);
  animation-delay: 20s; 
}
.slideshow li:nth-child(4) { 
  background-image: url(../../static/img/MLSC_NGC6164.jpg);
  animation-delay: 10s; 
}
.slideshow li:nth-child(5) { 
  background-image: url(../../static/img/MLSC_NGC1977.jpg);
  animation-delay: 0s; 
}
.slideshow li:nth-child(6) { 
  background-image: url(../../static/img/MLSC_Thor.jpg);
  animation-delay: 90s; 
}
.slideshow li:nth-child(7) { 
  background-image: url(../../static/img/MLSC_n2392sm.jpg);
  animation-delay: 80s; 
}
.slideshow li:nth-child(8) { 
  background-image: url(../../static/img/MLSC_n4414.jpg);
  animation-delay: 70s; 
}
.slideshow li:nth-child(9) { 
  background-image: url(../../static/img/MLSC_N90.jpg);
  animation-delay: 60s; 
}
.slideshow li:nth-child(10) { 
  background-image: url(../../static/img/MLSC_n918sm.jpg);
  animation-delay: 50s; 
}

@keyframes imageAnimation { 
  0% { 
    opacity: 0.1;
    animation-timing-function: ease-in;
  }
  10% {
    opacity: 0.9;
    animation-timing-function: ease-out;
  }
  20% {
    opacity: 0.9;
  }
  30% {
    opacity: 0.1;
  }
}

/* Older browser support - class added by modernizr */
.no-cssanimations .slideshow li {
	opacity: 1;
}
