.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel {
    display: flex;
    transition: all 0.5s ease;
    width: 200vw;
}

.cell {
    flex: 0 0 100vw;
}

.carousel img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-button {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
    display: flex;
    box-sizing: border-box;
}

.carousel-button button {
    color: rgb(237, 237, 237);
    background-color: rgba(0, 0, 0, 0);
    border: none;
    font-size: 4vw;
    font-weight: bold;
    cursor: pointer;
    padding:12px 5px;
    border-radius: 0;       
    -webkit-tap-highlight-color: transparent;
}

.carousel-button button:hover {
    background-color: rgba(255, 255, 255, 0);
    color: rgb(145, 145, 145);
}