body {
    width: 100%;
    height: 100%;
}

.scroll-contents {
    z-index: -100;
}

.background-image {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    color: black;
    filter: brightness(45%);
}

.info-box {
    position: absolute;
    top: 20%;
    left: 70px;
    right: 70px;
    color: white;
    text-align: center;
    font-family: 'Samsung Sharp Sans', sans-serif;
    font-size: 40px;
    padding: 20px 10% 25px 10%;
    border-radius: 30px;
}

.info-box h3 {
    font-size: 20px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Verdana, sans-serif;
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

.slideshow-container {
    position: absolute;
    top: 55%;
    left: 320px;
    height: 400px;
    width: 700px;
    background-color: black;
}

.dots {
    position: absolute;
    top: 134%;
    left: 640px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

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

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}