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

.top {
  display: flex;
  align-items: center;
  gap: 50px;
}
.arrow {
  height: 150px;
  cursor: pointer;
}
.right {
  transform: rotate(180deg);
}
.frame {
  width: 400px;
  height: 400px;
  overflow: hidden;
}
.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-radius: 50%;
  border: 1px solid white;
  cursor: pointer;
}
