.imageSlider{
    --photoindex: 0;
    margin-top: 1em;
    width: 100vw;
    height: 80vh;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.photoWrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: rgb(0, 0, 0, .7);
    flex-grow: 0;
    flex-shrink: 0;
    transform: translateX(calc(var(--photoindex) * -100vw));
    transition: all 400ms ease-in;
}
.photoWrapper > img{
    max-height: 100vh;
    max-width: 100vw;
}

.indexButton{
    position: absolute;
    background: transparent;
    height: inherit;
    border: none;
    transition: all 150ms;
}
.indexButton:hover{
    background-color: rgb(255, 255, 255, .3);
}
.indexButton > img{
    width: 3em;
    height: 3em;
}

.previousbutton{
    margin-left: 0;
    margin-right: auto;
    z-index: 100;
}
.nextbutton{

    margin-left: auto;
    margin-right: 0;
    right: 0;
    z-index: 100;
}
.bottom_image_indicator_wrapper{

    position: absolute;
    bottom: 10vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    gap: .5em;
    
}

.bottom_image_indicator{
    content: " ";
    background-color: black;
    border: 1px solid white;
    width: .5em;
    height: .5em;
    border-radius: 50%;
    transition: all 500ms;
    cursor: pointer;
}
.bottom_image_indicator.selected{
    border: 1px solid white;
    transform: scale(1.8);
}