/*Flüssiger Bildlauf für Navigationsbar*/
html {
  scroll-behavior: smooth;
}
/*Top Navigationsbar*/
.topnav {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  width:100%;
  z-index:10;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}
.topnav a.highlight {
  background-color: #333;
  color: white;
  animation-name: Highlight;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  
}
.topnav .icon {
  display: none;
}
@keyframes Highlight{
	50% {background-color: orange;}
	100% {background-color: #333;}
}
@media screen and (max-width: 700px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* CSS Boxen für Website */
body, html {
  height: 100%;
  margin: 0;
  font: 400 15px/1.8 "Lato", sans-serif;
  color: #777;
}

.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4, .bgimg-5 , .bgimg-6 , .bgimg-7 {
  position: relative;
  opacity: 0.65;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}
.bgimg-1 {
  background-image: url("medien/2866-07a.webp");
  min-height: 100%;
}

.bgimg-2 {
  background-image: url("medien/IMG_20220610_192132.webp");
  min-height: 400px;
}

.bgimg-3 {
  background-image: url("medien/IMG_20220609_080725.webp");
  min-height: 400px;
}

.bgimg-4 {
  background-image: url("medien/Fox-Zebra.webp");
  min-height: 100%;
}
.bgimg-5 {
  background-image: url("medien/IMG_20220604_103206.webp");
  min-height: 100%;
}
.bgimg-6 {
  background-image: url("medien/KnabenSchuleHausreihe.webp");
  min-height: 100%;
}
.bgimg-7 {
  background-image: url("medien/Sitzungssaal.webp");
  min-height: 100%;
}

.caption {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #000;
}

.caption span.border {
  background-color: #111;
  color: #fff;
  padding: 18px;
  font-size: 25px;
  /*letter-spacing: 10px;*/
}

/*Formatierungen Schriften*/
p {
	text-align: center;
}
p.normal {
	text-align: left;
}
h1 {
  font: "Lucida Handwriting", Cursive;
  font-size:30px;
  color: #f7f7f7;
}
h2 {
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size:25px;
  color: #f7f7f7;
}
h3 {
  letter-spacing: 5px;
  text-transform: uppercase;
  font: 20px "Lato", sans-serif;
  color: #111;
}

h4 {
  letter-spacing: 5px;
  text-transform: uppercase;
  font: 20px "Lato", sans-serif;
  color: #ffffff;
  text-align: center;
}
.bg-text {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  color: white;
  font-weight: bold;
  /*font-size: 80px;*/
  border-width: 5px;
  border-color: #f1f1f1;
  border-top-style: solid;
  border-bottom-style: solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
  padding: 20px;
  text-align: center;
}
.bg-text-black {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.8); /* Black w/opacity/see-through */
  color: white;
  font-weight: bold;
  /*font-size: 80px;*/
  border-width: 5px;
  border-color: #f1f1f1;
  border-top-style: solid;
  border-bottom-style: solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
  padding: 20px;
  text-align: center;
}
.bg-signature {
	font-family: 'Dancing Script', 'Papyrus', Fantasy;
    font-size: 400%;
}
table.center {
  margin-left: auto; 
  margin-right: auto;
}

/*Formatierungen Links*/
/* unvisited link */
a.white:link {
  color: white;
}

/* visited link */
a.white:visited {
  color: yellow;
}

/* Turn off parallax scrolling for tablets and phones */
/*@media only screen and (max-device-width: 1024px) {
  .bgimg-1, .bgimg-2, .bgimg-3 {
    background-attachment: scroll;
  }*/
}

