/* Menüleiste */
.navbar {
  overflow: auto;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 6%;
  white-space: nowrap;
  z-index: 1;
}
.navbar a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 1;
}
.logo {
  position: fixed;
  top: 0;
  margin-top: 0px;
  margin-left: 10px;
  width: 120px;
  z-index: 2;
}
.spacer {
  margin-left: 120px;
}

/*Verhalten auf kleinen Bildschirmen*/
@media screen and (max-width: 992px) {

    .logo {
      width: 150px;
    }

    .spacer{
      margin-left: 170px;
    }

    .navbar a {
      height: 9%;
      padding: 9px;
      font-size: xx-large;
    } 
    
    .webcamgallerie{
      width: 100%;
      left: 0%;
    }

    .zur, .vor{
      top: 40%;
      padding: 20px;
      background-color: rgba(214, 214, 214, 0.8);
      color: black;
      
    }

    .textfeld{
      width: 90%;
      left: 5%;
    }

    .alignL{
      display: none;
    }

    .alignR{
      padding-right: 0;
    }

  .feet a {
    font-size: xx-large;
} 

}

/*Verhalten auf normalen Bildschirmen*/
@media screen and (min-width: 993px) {

  .webcamgallerie{
  width: 60%;
  left: 20%;
  }

  .navbar a {
    padding: 14px 16px;
    font-size: large;
} 

  .feet a {
    font-size: small;
} 

.zur, .vor{
  top: 50%;
  padding: 20px;
  color: white;
}

.zur:hover, .vor:hover {
  background-color: rgba(0,0,0,0.8);
  
}

.textfeld{
  width: 70%;
  left: 15%;
}

.alignR{
  padding-right: 10px;
}

}

/* Texte beim Hovern */
.navbar a:hover, .alignR a:hover {
    font-weight: bold;
}


/* Fusszeile */
.feet {
    background-color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    
}
.feet a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    text-decoration: none;
}
.alignL{
    float: left;
    padding-left: 10px;
    padding-bottom: 5px;
}
.alignR{
    float: right;
    padding-bottom: 5px;
    display: block;
}

/* Bildgallerie Home */
* {
  box-sizing:border-box
}
.bildgallerie {
  width: 100%;
  position: fixed;
  left: 0;
}
.bilder {
  display: none;
}
.zur, .vor {
  cursor: pointer;
  position: fixed;
  margin-left: 0;  
  width: auto;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  user-select: none;
  border-radius: 10px;
}
.vor {
  right: 10px ;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 0.5s;
  animation-name: fade;
  animation-duration: 0.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


/*Iframes*/
.webcamgallerie {
    position: absolute;
    height: 90%;
    top: 5%;
    overflow: hidden;
    border: none;
}
.textfeld{
font-family: Arial, Helvetica, sans-serif;
position: absolute;
padding: 1%;
height: 85%;
top: 7%;
overflow: auto;
border: none;
background-color: white;

}


/* Webcam Anwendung */
.spalte {
  float: left;
  width: 25%;
  padding: 10px;
}
.spalte img {
  opacity: 0.8; 
  cursor: pointer; 
  border-radius: 5px;
}
.spalte img:hover {
  opacity: 1;
}
.zeile:after {
  content: "";
  display: table;
  clear: both;
}
.bildexp {
  position: relative;
  display: none;
  padding: 10px;
}
.startbild{
  display: none;
}