                * {
                box-sizing: border-box
            }
            
            body {
                font-family: Verdana, sans-serif;
                margin: 0
            }
            
            .mySlides {
                display: flex;
                justify-content: center;
            }
            
            img {
                vertical-align: middle;
            }
            /* Slideshow container */
            
            .slideshow-container {
                max-width: 80%;
                width: 100%;
                position: relative;
                /* margin: auto; */
                top: 30px;
            }
            /* Next & previous buttons */
            
            .prev,
            .next {
                cursor: pointer;
                position: absolute;
                /* top: 50%; */
                top: 200px;
                width: auto;
                padding: 16px;
                margin-top: -22px;
                color: black;
                font-weight: bold;
                font-size: 18px;
                transition: 0.6s ease;
                border-radius: 0 3px 3px 0;
                user-select: none;
            }
            
            .prev {
                left: -30px;
            }
            /* Position the "next button" to the right */
            
            .next {
                right: -30px;
                border-radius: 3px 0 0 3px;
            }
            /* On hover, add a black background color with a little bit see-through */
            
            .prev:hover,
            .next:hover {
                background-color: #F2F2FF;
            }
            /* Caption text */
            
            .text {
                /* color: #f2f2f2; */
                color: black;
                font-weight: 600;
                font-size: 28px;
                /* padding: 38px 0px; */
                position: absolute;
                top: -60px;
                /* bottom: 8px; */
                width: 100%;
                text-align: center;
            }
            /* Number text (1/3 etc) */
            
            .numbertext {
                color: black;
                font-size: 12px;
                padding: 8px 12px;
                position: absolute;
                top: -24px;
                left: 0px;
            }
            /* The dots/bullets/indicators */
            
            .dot {
                cursor: pointer;
                height: 15px;
                width: 15px;
                margin: 0 2px;
                top: -35px;
                position: relative;
                background-color: #F2F2FF;
                border-radius: 50%;
                display: inline-block;
                transition: background-color 0.6s ease;
            }
            
            .active,
            .dot:hover {
                background-color: #9293C9;
            }
            /* Fading animation  */
            
            .fade {
                -webkit-animation-name: fade;
                -webkit-animation-duration: 1.5s;
                animation-name: fade;
                animation-duration: 1.5s;
            }
            
            .fade img {
                max-height: 600px;
                max-width: 100%;
            }
            
            @-webkit-keyframes fade {
                from {
                    opacity: .4
                }
                to {
                    opacity: 1
                }
            }
            
            @keyframes fade {
                from {
                    opacity: .4
                }
                to {
                    opacity: 1
                }
            }
            /* On smaller screens, decrease text size */
            
            @media only screen and (max-width: 300px) {
                .prev,
                .next,
                .text {
                    font-size: 11px
                }
                .dot {
                    height: 10px;
                    width: 10px;
                }
                @media only screen and (max-width: 500px) {
                    .prev,
                    .next,
                    .text {
                        font-size: 14px
                    }
                }