
/* Slideshow container */
.slideshow-container {
  width: 100vw;
  height: 100vh; 
  position: relative;
  margin: auto;
  overflow: hidden;
}

.mySlides img {
  width: 100%;
  height: auto; 
  object-fit: cover;
}

.mySlides {
  display: none;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}


/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


.content {
    flex: 1;
}

.site-footer {
    background-color: #333;
    color: #fff;
    padding: 20px 10px; /* Adjust padding for smaller screens */
    text-align: center; /* Center-align footer content */
}

.footer-content {
    display: flex;
    justify-content: center; /* Center-align footer content */
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 auto;
    margin: 0 10px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column ul, .footer-column p {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.social-media {
    padding-left: 0;
}

.social-media li {
    margin-bottom: 5px;
}

.social-media li a {
    color: #fff;
    text-decoration: none;
	padding: 10px;
	font-size: 24px;
}

.social-media li a:hover {
    text-decoration: none;
}
.quotes-slideshow .quoteSlide {
  display: none;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  font-size: 40px;
}
.site-footer a {
    background-color: #333;
    color: white; 
    text-decoration: none; 
}

.site-footer ul {
	background-color: #333
}
.logo {
			position: absolute;
			top: 20px; 
			left: 50%;
			transform: translateX(-50%);
			width: 300px; 
			height: auto; 
			margin-right: 200px; 
			margin-bottom: 10px; 
		}
#header {
			position: relative;
			text-align: center;
		}

		.header-image {
			width: 50%;
			height: auto;
		}
        #navbar {
            text-align: center;
            list-style-type: none;
            padding: 0;
        }

        #navbar li {
            display: inline;
        }

        #navbar li a {
            display: inline-block;
            padding: 10px 20px;
            text-decoration: none;
            color: #fff;
        }		