body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: black;
  font-family: sans-serif;
  color: white;
  text-align: center;
}

#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  z-index: 10;
}

.coming-soon {
  font-size: 5em;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards, fadeOut 2s ease-in 3s forwards;
}

#slideshow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

#taglines {
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.line {
  font-size: 1.5em;
  margin: 10px 0;
  opacity: 0;
  transition: opacity 2s ease-in;
}

.line.show {
  opacity: 1;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}