body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  background-color: gray;
}
.container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-direction: column;
}

.container .top {
  display: flex;
  align-items: center;
  gap: 50px;
}

.arrow {
  height: 150px;
  cursor: pointer;
}

.left {
  transform: rotate(180deg);
}

.frame {
  width: 800px;
  height: 500px;
  overflow: hidden;
  box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.5);
}

.slider {
  display: flex;
  transition: all 1s ease;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bottom {
  display: flex;
  gap: 30px;
}
.button {
  width: 15px;
  height: 15px;
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
}
