* {
            box-sizing: border-box;
        }
       
        .slideshow-container {
            position: relative;
            max-width: 100%;
			width: 800px;
            overflow: hidden;
			margin-left: auto;
			margin-right: auto;
        }
        .slides {
            display: none;
            width: 100%;

        }
        .active {
            display: block;
        }
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 3px;
            user-select: none;
            background-color: rgba(0, 0, 0, 0.5);
            transform: translateY(-50%);
	
        }
        .next {
            right: 10px;
        }
        .prev {
            left: 10px;
        }
        .caption {
            text-align: center;
            font-size: 18px;
            margin-top: 10px;
        }
        .dots {
            text-align: center;
            padding: 20px 0;
        }
        .dot {
            display: inline-block;
            width: 15px;
            height: 15px;
            margin: 0 5px;
            border-radius: 50%;
            background-color: #bbb;
            cursor: pointer;
        }
        .active-dot {
            background-color: #717171;
        }