/* .slbody {
    display: flex;
      justify-content: center;
      align-items: center;
      background: #ffffff;
      height: 25vh;
      margin: 0;
      width: 100%;
} */
/* img#titles {
    width: 80%;
    margin: 10px 8% -170px 8%;
} */
.slideshow-container {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.slide {
  display: none;
  opacity: 0;
  animation: fade 4s infinite;
}
.slide img {
  width: 100%;
  border-radius: 1rem;
  object-fit: contain;
  padding: 0% 4%;
  box-shadow: 2px 2px 15px rgb(220 220 220);
}
@keyframes fade {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
