/* Essential styles for index.php slideshow */

/* Slideshow container */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 770px;
    margin: 0 auto;
    padding: 15px 10px;
}

/* Slide images */
.mySlides {
    display: none;
    width: 100%;
}

.mySlides img {
    width: 100%;
    height: auto;
    max-width: 770px;
}

/* Show first slide */
.mySlides:first-child {
    display: block;
}

/* Fade animation */
.fade {
    animation: fade 1.5s;
}

@keyframes fade {
    from { opacity: 0.4 }
    to { opacity: 1 }
}


/*Soli Deo Gloria Text */
h23 {
    font-family: liana, serif;
    font-weight: bold;
    font-size: 24pt;
    color: #B7C29E;
    text-align: center;
    margin: 20px 0;
}


/* Mobile responsive */
@media screen and (max-width: 770px) {
    .slideshow-container {
        padding: 10px 5px;
    }
    
    h23 {
        font-size: 18pt;
    }
}