.carousel {
  width: 800px;
  position: relative;
  overflow: hidden;
  margin: auto;
}
.carousel-images {
  display: flex;
  transition: transform 1.30s ease-in-out;
  width: 100%;
}
.carousel-images img {
  width: 800px;
  height: 500px;
  object-fit: cover;
}
.buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.buttons button {
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  user-select: none;
}
