@charset "UTF-8";
/* CSS Document */
/* Remove default margins */
body {
    margin: 0;
    padding: 0;
    background: #000;
}

/* Slideshow wrapper */
.slideshow-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Hide slides by default */
.slide {
    display: none;
    position: relative;
}

/* Images scale to full width and stay responsive */
.slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Slide Title Text */
.slide-title {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    font-weight: 600;
    text-align: center;
    padding: 5px 15px;
    width: 80%;
}

/* Fade animation */
.fade {
    animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to   { opacity: 1; }
}

/* Arrow Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    user-select: none;
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
}

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.6);
}

/* Position Arrows */
.prev {
    left: 20px;
}

.next {
    right: 20px;
}


