.slideshow {
    position: relative;
    width: 100%;
    height: auto;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slide:first-child {
    opacity: 1;
  }
  
