body::-webkit-scrollbar {
    display: none;
}

#slide-window {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0px;
    left: 0px;
}

#slides {
    height: 100%;
    position: absolute;
    margin: 0px;
    padding: 0px;

    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);

    transition: all 0.66s ease;
    -webkit-transition: all 0.66s ease;

}

.slide {
    list-style: none;
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
    width: 500px;
    height: 100%;
    background: #ccc;
    text-align: center;
    line-height: 300px;
    background-size: cover;
    background-position: 50% 50%;
    color: #fff;
    visibility: hidden;
}

.alive {
    visibility: visible;
}

.nav {
    position: fixed;
    z-index: 9;
    top: 50%;
    cursor: pointer;
    color: #fff;
    opacity: 0.7;
    transition: all 0.66s ease;
    -webkit-transition: all 0.66s ease;
}

.nav:hover {
    opacity: 1.0;
}

#left {
    left: 3%;
}

#right {
    right: 3%;
}

#credit {
    text-align: center;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: inherit;
}

#box {
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-shadow: 2px 2px 10px black;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
}

@media screen and (max-width: 625px) {
    #box {
        font-size: 1rem;
    }
}

.button-39 {
    background-color: rgba(0, 0, 0, 0.8);
    border: 0px solid rgb(209, 213, 219);
    border-radius: 2rem;
    box-sizing: border-box;
    color: #fff;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.25rem;
    padding: .75rem 1rem;
    text-align: center;
    text-decoration: none #D1D5DB solid;
    text-decoration-thickness: auto;
    box-shadow: 0 1px 20px 0 rgb(242 242 242);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-39:hover {
    background-color: rgb(20, 20, 20);
}

.button-39:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.button-39:focus-visible {
    box-shadow: none;
}