.container{ display: flex; flex-direction: column; justify-content: space-around; width: 60%; } .slideshow-container { position: relative; width: 100%; overflow: hidden; } .image-gallery { display: flex; transition: transform 0.5s ease-in-out; } .image-container { width: 100%; height: 100%; } .image-container img { width: 100%; height: 100%; } .prev-img, .next-img { cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -22px; background-color: rgba(0, 0, 0, 0.5); color: white; font-weight: bold; font-size: 18px; transition: 0.6s ease; } .next-img { right: 0; } .prev-img:hover, .next-img:hover { background-color: rgba(0, 0, 0, 0.8); } .bottom-img-container { text-align: center; margin-top: 20px; } .bottom-img { height: 40px; width: 50px; margin: 0 10px; cursor: pointer; opacity: 0.5; } .bottom-img.current-bottom-img { opacity: 1; }