html,
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  line-height: 1.5;
  background: #000;
  color: #fff;
}
* {
  box-sizing: border-box;
}
@keyframes flash {
  0% {
    background-color: #fff;
    color: #000;
  }
  50% {
    background-color: #000;
    color: #fff;
  }
  100% {
    background-color: #fff;
    color: #000;
  }
}
@keyframes marquee {
  0% {
    left: 100vw;
  }
  100% {
    left: -100%;
  }
}
#slideContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
}
#slideContainer > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1.5s ease;
  z-index: 2000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #000;
  color: #fff;
}
#slideContainer > div.visible {
  z-index: 3000;
}
#slideContainer > div img,
#slideContainer > div video {
  max-width: 100%;
  max-height: 100vh;
}
#slideContainer div.pixelschild {
  background: #fff;
  color: #000;
  font-size: 5vw;
}
#slideContainer div.pixelschild img {
  width: 20vw;
}
.dialogContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 5vh;
  text-align: center;
  z-index: 5000;
}
.dialogContainer > * {
  opacity: 0;
  margin: 0 auto;
  transition: all 1.5s ease;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  color: #000;
}
.dialogContainer #signup {
  padding: 10%;
}
.dialogContainer #signup ul {
  display: inline-block;
  margin: 5vh auto;
}
.dialogContainer #signup ul li {
  list-style: none;
  float: left;
  border: 1px solid #666;
  border-radius: 10px;
  background: #ccc;
  color: white;
  padding: 3vh 0;
  width: 7vw;
  margin: 2vh;
}
.dialogContainer #scroller {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  height: 10vh;
  overflow: hidden;
}
.dialogContainer #scroller > div {
  display: inline-block;
  text-align: left;
}
.dialogContainer #scroller > div > div {
  position: relative;
  line-height: 10vh;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.dialogContainer #scroller.active {
  opacity: 0.8;
}
.dialogContainer #flash {
  padding-top: 45vh;
  font-size: 10vh;
}
.dialogContainer .flash {
  animation: flash 1s ease-in;
  animation-iteration-count: 3;
}
#notification {
  position: absolute;
  z-index: 9000;
  right: 0;
  top: 0;
  display: inline-block;
  background: #666;
  color: white;
  padding: 1% 2%;
  font-size: 40%;
  max-width: 30%;
  text-align: left;
  display: none;
}
iframe {
  width: 1px;
  min-width: 100%;
  *width: 100%;
  height: 100%;
  border: 0;
  overflow: hidden;
}
