  .slideshow {
    width: 100%;
    height: 47vh;
    max-width: 800px; /* Adjust based on your container size */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  .slideshow ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
  }

  .slideshow li {
    display: none;
    text-align: center;
    height: 100%;
  }

  .slideshow li.show {
    display: block;
  }

  .slideshow img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* This ensures the image maintains aspect ratio */
  display: block;
  margin: auto;
  }
 
#slideshow-caption {
  width: 800px;
  height: 38px;
  position: absolute;
  bottom: 0;
  left: 0; 
  z-index: 1;
}

#slideshow-caption .slideshow-caption-container {
  padding: 10px 25px 10px 25px; 
  background: transparent url(../images/transparent.png) repeat;  
  z-index: 1000;
}
 
#slideshow-caption p {
  padding: 0;
  font: normal 130% arial, sans-serif;
  color: #FFFF99;
  text-shadow: 1px 1px #000;
}
