.slider-wrapper {
    width: 490px;
    height: 300px;
    overflow: hidden;
}

.inner-wrapper {
    width: 50%;
    height: 90%;
    position: relative;
    left: -134%;

}

.slide {
    /* width: calc(100% / 5); */
    width: 100%;
    height: 100%;
    float: left;
    font-size: 100px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button {
    width: 30px;
    height: 30px;
    border-top: 2px solid black;
    position: absolute;
    cursor: pointer;
}

.prev {
    border-left: 2px solid black;
    left: 0%;
    top: 30%;
    transform: rotate(-45deg) scale(0.5);
}

.next {
    border-right: 2px solid black;
    right: 15%;
    top: 30%;
    transform: rotate(45deg) scale(0.5);
    box-shadow: 0 4px 4px #33333329;
}