.carousel-container {
  width: 80%;
  max-width: 800px;
  overflow: hidden;
  position: relative;
  margin: auto;

}
.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel img {
  width: 100%;
  height: 100%;
}
.buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.buttons button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}
