body {
    margin: 0;
    padding: 0;
    font-family: 'europa', Avenir Next, Avenir, Helvetica, sans-serif;
	background-color: #ddd
}
.header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}
.toolbar-container {
    display: flex;
    align-items: center;
    background-color: #FA4515;
    padding: 10px;
}
.logo {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 20px;
    width: 100px;
}
.logo-img {
    width: 120%;
}
.toolbar {
    display: flex;
    justify-content: space-evenly;
    flex-grow: 1;
}
.toolbar button {
	font-family: Gillsans, sans-serif;
    padding: 10px 20px;
    background-color: #FA4515;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-left: 10px;
	position: relative;
	z-index: 1;
	font-size: 1.25em;
	font-weight: bold;
}
.toolbar button:first-child {
    margin-left: 0;
}

.toolbar button:hover {
    background-color: #fff;
    color: #FD5000;
    border-radius: 4px;
    /*
    margin-top: -10px;
    margin-bottom: -10px;
    */
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.toolbar a button:hover {
    background-color: #fff;
    color: #FD5000;
    border-radius: 4px;
    /*
    margin-top: -10px;
    margin-bottom: -10px;
    */
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.headline{
	font-family: 'kepler-std-display', Century Schoolbook, New Century Schoolbook, Georgia, Palatino, Bookman, serif;
	white-space: nowrap;
	line-height: 1;
	display: inline;
}

.active{
	background-color: #FD5000;
	color: #000;
}

.slideshow-container {
    position: relative;
    max-width: 100vw;
    margin: auto;
	background-color: #333;
	margin-bottom: -2vh;
}

.slide {
    display: none;
}

.slide img {
    max-width: 100vw;
    height: 50vh;
    display: block;
    margin: 0 auto; 
}

.prev,
.next {
    font-size: 24px;
    background-color: transparent; 
    border: none;
    color: #000; 
}


.slideshow-container {
    position: relative;
}

.prev {
    position: absolute;
    top: 50%;
    left: 10px; 
    transform: translateY(-50%);
}

.next {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.infobox{
	font-family: 'europa', Avenir Next, Avenir, Helvetica, sans-serif;
	background-color: #502C1D;
	position: relative;
	max-width:100vw;
	margin:auto;
	color: white;
	max-height: 100vh;
	
}
.flex-container {
	margin: 0;
    padding: 0;
}
.infobox h1{
	font-family: 'europa', Avenir Next, Avenir, Helvetica, sans-serif;
	font-size: 2.0em;
	white-space: nowrap;
	line-height: 1;
	display: inline;
}

.dummy-box{
	position: relative;
	background-color: #333;
	min-width: 25vw;
	min-height: 25vh;
	margin: 0;
    padding: 0;
	z-index: 1;
	/*
	margin-top: -1vh;
	*/
}

@media only screen and (max-width: 600px) {
  /* Styles for screens smaller than 600px */
  .toolbar {
    flex-direction: column; /* Stack toolbar buttons vertically on smaller screens */
  }
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.team-member {
    margin: 10px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.member-info {
    width: 300px;
    margin-left: 20px;
    text-align: left;
}

.member-info h2 {
    margin-top: 0;
}

.member-info p {
    margin-top: 5px;
    margin-bottom: 10px;
}


