body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #000;;
}
html, body {
    margin: 0;
    height: 100%;
    overflow: hidden;
  }

  #container {
    max-width: 500px;
    margin: 0 auto;
  }
  
  #slideshowWrapper {
    padding: 1rem;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }

  .slide #startWrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slide #startWrapper p {
    color: #37FF8B;
    text-align: center;
    width: 75%;
    padding: 10px;
    border: 2px solid #37FF8B;
    border-radius: 3px;
    font-size: 18px;
  }

  .slide #startWrapper img {
    display: none;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .caption-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.65);
    color: white;
    font-size: 18px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .slide:not(:nth-child(15)) .caption-overlay {
    height: 79px;
  }

  .caption-overlay p {
    padding: 12px;
    margin: 0;
  }

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    max-width: 500px;
  }
  
  .slide.active {
    opacity: 1;
    pointer-events: auto;
  }

  .navigation {
    position: fixed;
    bottom: 10%;
    z-index: 99;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: space-between;
  }
  
  .navBtn {
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .navBtn svg {
    height: 50px;
    fill: #0094C6;
  }

  .navBtn:disabled svg{
    fill: rgba(0,0,0,0.45);
  }
  
  #prevBtn { 
    margin-left: 20px; 
  }
  
  #nextBtn { 
    margin-right: 20px; 
  }
  
  
  #slideshowWrapper .slide:nth-child(7) img,
  #slideshowWrapper .slide:nth-child(8) img {
    height: auto;
    position: absolute;
    top: 79px;
  }
  
  #slideshowWrapper .slide:nth-child(15) img {
    object-position: center 65px;
  }

  #slideshowWrapper .slide:nth-child(18) img,
  #slideshowWrapper .slide:nth-child(21) img {
    object-position: right;
  }

  #slideshowWrapper .slide:nth-child(20) img,
  #slideshowWrapper .slide:nth-child(29) img {
    height: 70%;
    position: absolute;
    top: 79px;
  }

  #slideshowWrapper .slide:nth-child(22) img {
    height: 66%;
    position: absolute;
    top: 79px;
  }

  #slideshowWrapper .slide:nth-child(24) img {
    height: 90%;
    position: absolute;
    top: 79px;
  }

  #slideshowWrapper .slide:nth-child(25) img {
    height: 63%;
    position: absolute;
    top: 79px;
  }

  #slideshowWrapper .slide:nth-child(27) img,
  #slideshowWrapper .slide:nth-child(28) img {
    height: 81%;
    object-position: left;
    position: absolute;
    top: 79px;
  }

  .slide:last-child .caption-overlay {
    background: rgba(0,0,0,1);
  }

  .blackOverlay {
    position: absolute;
    inset: 0;
    background: black;
    opacity: 0;
    pointer-events: none;
  }