* {
    box-sizing: border-box
}


/* Slideshow container */

.ss-container {
    /* max-width: 80%; */
    position: absolute;
    /* top: 50px; */
    /* left: 200px; */
    margin: auto;
}

.ss-slides {
    display: none;
    max-width: 100vw;
    max-height: 90vh;
}

.ss-prev,
.ss-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #f60;
    background-color: black;
    font-weight: 900;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.ss-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.ss-prev:hover,
.ss-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.ss-text {
    color: #f2f2f2;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.ss-numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.ss-active {
    background-color: #717171;
}

.ss-fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes ss-fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes ss-fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

h2 {
    color: #f60;
}

p {
    color: white;
}