* {
  margin: 0;
  padding: 0;
}

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;
  opacity: 0.3;
}
.arrow:hover {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}

.right {
  transform: rotate(180deg);
}

.frame {
  width: 800px;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.slider {
  display: flex;
  transition: all 0.3s ease;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom {
  display: flex;
  gap: 20px;
}

.button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid white;
  cursor: pointer;
}
