html {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
}

.bg-slide-show {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bg-slide-show,
.bg-slide-show:after {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.bg-slide-show:after {
  content: '';
  /*background: transparent url(/res/pattern.png) repeat top left;*/
}
.bg-slide-show li span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: imageAnimation 42s linear infinite 0s;
  -moz-animation: imageAnimation 42s linear infinite 0s;
  -o-animation: imageAnimation 42s linear infinite 0s;
  -ms-animation: imageAnimation 42s linear infinite 0s;
  animation: imageAnimation 42s linear infinite 0s;
}
.bg-slide-show li:nth-child(1) span {
  background-image: url(/res/img-1980/1.jpg)
}
.bg-slide-show li:nth-child(2) span {
  background-image: url(/res/img-1980/2.jpg);
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  -ms-animation-delay: 6s;
  animation-delay: 6s;
}
.bg-slide-show li:nth-child(3) span {
  background-image: url(/res/img-1980/3.jpg);
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  -ms-animation-delay: 12s;
  animation-delay: 12s;
}
.bg-slide-show li:nth-child(4) span {
  background-image: url(/res/img-1980/4.jpg);
  -webkit-animation-delay: 18s;
  -moz-animation-delay: 18s;
  -o-animation-delay: 18s;
  -ms-animation-delay: 18s;
  animation-delay: 18s;
}
.bg-slide-show li:nth-child(5) span {
  background-image: url(/res/img-1980/5.jpg);
  -webkit-animation-delay: 24s;
  -moz-animation-delay: 24s;
  -o-animation-delay: 24s;
  -ms-animation-delay: 24s;
  animation-delay: 24s;
}
.bg-slide-show li:nth-child(6) span {
  background-image: url(/res/img-1980/6.jpg);
  -webkit-animation-delay: 30s;
  -moz-animation-delay: 30s;
  -o-animation-delay: 30s;
  -ms-animation-delay: 30s;
  animation-delay: 30s;
}
.bg-slide-show li:nth-child(7) span {
  background-image: url(/res/img-1980/7.jpg);
  -webkit-animation-delay: 36s;
  -moz-animation-delay: 36s;
  -o-animation-delay: 36s;
  -ms-animation-delay: 36s;
  animation-delay: 36s;
}
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -webkit-animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  25% {
    opacity: 0;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0
  }
}
@-moz-keyframes imageAnimation {
  0% {
    opacity: 0;
    -moz-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -moz-transform: scale(1.05);
    -moz-animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }
  25% {
    opacity: 0;
    -moz-transform: scale(1.1);
  }
  100% {
    opacity: 0
  }
}
@-o-keyframes imageAnimation {
  0% {
    opacity: 0;
    -o-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -o-transform: scale(1.05);
    -o-animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
    -o-transform: scale(1.1);
  }
  25% {
    opacity: 0;
    -o-transform: scale(1.1);
  }
  100% {
    opacity: 0
  }
}
@-ms-keyframes imageAnimation {
  0% {
    opacity: 0;
    -ms-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -ms-transform: scale(1.05);
    -ms-animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
    -ms-transform: scale(1.1);
  }
  25% {
    opacity: 0;
    -ms-transform: scale(1.1);
  }
  100% {
    opacity: 0
  }
}
@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    transform: scale(1.05);
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
    transform: scale(1.1);
  }
  25% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0
  }
}
/* Show at least something when animations not supported */
.no-cssanimations .bg-slide-show li span {
  opacity: 1;
}


.page-container {
  height: 100%;
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
h1, h2 {
  color: #fff;
  text-shadow: 2px 2px 2px rgba(50, 50, 50, 1);
  padding: 0 10px;
}
h1 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 4em;
}
h2 {
  font-family: 'Slabo 27px', serif;
  font-size: 3em;
}
@media screen and (max-width: 700px) {
  .bg-slide-show li:nth-child(1) span {
    background-image: url(/res/img-800/1.jpg)
  }
  .bg-slide-show li:nth-child(2) span {
    background-image: url(/res/img-800/2.jpg)
  }
  .bg-slide-show li:nth-child(3) span {
    background-image: url(/res/img-800/3.jpg)
  }
  .bg-slide-show li:nth-child(4) span {
    background-image: url(/res/img-800/4.jpg)
  }
  .bg-slide-show li:nth-child(5) span {
    background-image: url(/res/img-800/5.jpg)
  }
  .bg-slide-show li:nth-child(6) span {
    background-image: url(/res/img-800/6.jpg)
  }
  .bg-slide-show li:nth-child(7) span {
    background-image: url(/res/img-800/7.jpg)
  }
}
@media screen and (max-width: 600px) {
  h1 { font-size: 3em; }
  h2 { font-size: 2em; }
}
@media screen and (max-width: 400px) {
  h1 { font-size: 2.5em; }
  h2 { font-size: 1.5em; }
}
