body, html {
    height: 100%;
    margin: 0;
    background-color: #111111;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-gallery {
    display: flex;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    min-width: 100%;
    height: 100%;
    align-items: center;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.image-gallery::-webkit-scrollbar {
    display: none;
}

.image-gallery img {
    flex: 0 0 auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    scroll-snap-align: center;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}
