/* Presets */

html, body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background-color: snow;
    height: 100vh;
    overflow: auto;
}

h1 {
    padding: 0;
    margin: 0;
}

/* Navigation */

.header {
    height: 5em;
    width: 100%;
    font-family: "Genos";
    display: flex;
    background-color: #8FBC59;
}

.header .left-side {
    width: 50%;
    display: flex;
    justify-content: left;
    align-items: center;
}

.header .left-side h1 {
    color: snow;
    font-size: 1.5em;
    margin-left: 10px;
    transition: color 0.5s ease;    
    padding: 0;
    margin: 0;
}

.header .left-side h1:hover {
    color: snow;
    text-decoration: none;
    font-size: 1.5em;
}

.header .left-side img {
    width: auto;
    height: 3.5em;
    margin: 0px;
}

.header .right-side {
    width: 50%;
    gap: 20px;
    margin: 5px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header .right-side a {
    color: snow;
    text-decoration: none;
    font-size: 1.25em;
    transition: color 0.5s ease;
}

.header .right-side a:hover {
    color: snow;
    text-decoration: none;
    font-size: 1.25em;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.slideshow-container img {
    display: block;
    margin: 0;
    padding: 0;
}


/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  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: 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;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.welcome-section {
    padding: 10px;
    background-color: #8FBC59;
}

.welcome-section h1 {
    text-align: center;
    font-family: "Genos";
    font-size: 1.75em;
    color: snow;
}

.welcome-section .philosophy-group {
    display: flex;
    justify-content: center;

}

.welcome-section .philosophy-group img {
    margin: 10px;
    width: 300px;
    height: auto;
}

.welcome-section .philosophy-group p {
    font-size: 20px;
    color: snow;
    font-family: "Open Sans";
    margin: 10px;
    width: 500px;
    height: auto;
}

/* Footer */
.site-footer {
    background:#222;  
    color:snow;
    font-family: "Genos";
}
.site-footer .footer-inner {
    display:flex; 
    justify-content: center; 
    gap:1rem; 
    flex-wrap:wrap; 
    align-items:flex-start;
}

.site-footer small { 
    display:block; 
    margin-top:1rem; 
    color:#aaa;
}