body {
    background-color: #927df1;
    display: flex;
    justify-content: center;
    align-items: center;

}

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

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

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

.left {
    transform: rotate(180deg);
}
.slider {
    display: flex;
    transition: all 1.5s ease;
}
.frame {
    width: 800px;
    height: 500px;
    overflow: hidden;
}
.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button {
    height: 15px;
    width: 15px;
    border: 1px solid white;
    border-radius: 50%;
    cursor: pointer;
}

.bottom {
    display: flex;
    gap: 30px;

}
