body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: WHITE;
}

.slideshow-container {
  position: relative;
  width: 1200px;
  height: 600px;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slides img {
  width: 1200px;
  height: 700px;
  object-fit: cover;
}
