* {
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;

}

.slider img {
    height: 500px;
    width: 500px;

}

.clickableImg {
    height: 500px;
    width: 500px;
    cursor: pointer;
}

.fancyBox {
    height: 100%;
    width: 100%;
    top: 0;

    position: fixed;
    display: flex;
    justify-content: center;

    background-color: rgb(12, 12, 12);

    overflow: hidden;

    display: none;
}

.stash {
    display: flex;
    justify-content: space-around;
    padding: 5px 0 0 0;
}

.slider {
    align-self: center;
}

.prevButton {
    top: 50%;
    left: 0;

    position: absolute;
    padding: 10px 15px;
}

.nextButton {
    top: 50%;
    right: 0;

    position: absolute;
    padding: 10px 15px;
}

.exitButton {
    top: 0;
    right: 0;

    position: absolute;
    padding: 10px 15px;
}