body,
html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: black;
  font-family: sans-serif;
}

#slideshow-root {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.layer {
  position: absolute;
  object-fit: contain;
  object-position: center;

  transition: opacity 1.2s ease;
  /* opacity only */
  opacity: 0;

  background: black;
}

.slide-news {
  top: 0;
  left: 6.5vw;
  width: 87vw;
  height: 87vh;
}

.slide-full {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

#caption {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 90vw;
  text-align: center;

  color: white;
  font-size: 2vw;
  font-weight: 600;
  line-height: 1.2;
  z-index: 10;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;

  transition: opacity 1.6s ease;
  opacity: 1;
}

#excerpt {
  position: absolute;
  bottom: 1vh;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 90vw;
  text-align: center;
  padding: 0 1.5vh;

  color: #222222;
  background: rgba(255, 255, 255, 0.7);
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.25;
  z-index: 10;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;

  transition: opacity 1.6s ease;
  opacity: 1;
}

#playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2vh 4vw;
  font-size: 4vw;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: 3px solid white;
  border-radius: 1vw;
  cursor: pointer;
  z-index: 9999;
  display: none;
  /* hidden until needed */
}

#newsBanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 5vh;
  /* adjust height */
  /* object-fit: contain; */
  opacity: 0;
  transition: opacity 1.2s ease;
  /* same as slide fade */
  z-index: 20;
  /* above slides, below play button */
  pointer-events: none;
  /* keeps interactions safe */
}