body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.slideshow {
    width: 80vw;
    height: 80vh;
    box-shadow: 0px 0px 10px gray;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s;
}

.slide-pic {
    width: 100%;
}

.arrow {
    position: absolute;
    top: 0;
    bottom:0;
    font-size: 100px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
    color: rgba(156, 10, 125, 0.5);
    user-select: none;
    cursor: pointer;

}

.arrow:hover {
    color: rgba(156, 10, 125)

}

.arrow-left {
    left: 0;

}
.arrow-right {
    right: 0;

}

.indicator-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    list-style-type: none;
    font-size: 40px;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.indicator {
    padding: 0 10px;
    user-select: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 1s;
    
}

.active {
    opacity: 1;
}