*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/* Navigation */

#top {
  align-items: center;
  background-color: #3B9422;
  font-family: 'Open Sans', sans-serif;
  padding-left: 40px;
  height: 9vh;
  min-height: 30px;
}

.Logo img{
  width: auto;
  max-height: 7vh;

}

/* Anheftenede Navigationsbar */

.sticky {
  position: fixed;
  top: 0;
  width: 100%
}

.sticky + .content {
  padding-top: 9vh;
}



/* Automatische Navigationsbar */

nav{
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 9vh;
  background-color: #3B9422;
  font-family: 'Open Sans', sans-serif;
}

.nav-links{
  display: flex;
  justify-content: space-around;
  color: rgb(226,226,226);
  width: 80%;
  font-size: 16px;
  vertical-align: center;
}
.nav-links li{
  list-style: none;
}
.nav-links a{
  color: rgb(226,226,226);
  text-decoration:none;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: bold;
  padding: 18px;
}

.nav-links a:hover{
  color: white;
  text-shadow: 3px 3px 3px #284022;
}

/* Body aller Seiten */

body{
  background-color: #faf7ef;
}

#Titelbild img{
  padding: none;
  width: 100%;
  padding-bottom: none;
  background-color: none;
}

#main{
  max-width: 1000px;
  margin: auto;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: 'Open Sans', sans-serif;
}

#main img{
  max-width: 100%;
  align-items: center;
}

/* Team-Tabelle */

.team_column {
  float: left;
  width: 50%;
  padding: 10px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.left {
  width: 60%;
  padding-left: 0;
  padding-right: 0;
}
.right {
  width: 40%;
}

@media screen and (max-width: 1000px) {
  .team_column {
    width: 100%;
  }
}

/* Tabelle mit gefangenen Vögeln */
#voegel {
  max-width: 1500px;
  margin: auto;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: 'Open Sans', sans-serif;
}

.vogel-tabelle{
  width: 100%
}

table.vogel-tabelle {
  border: 1px solid black;
  border-collapse: collapse;
  border-spacing: 5px;
}

table.vogel-tabelle tr{
  padding: 4px;
}

table.vogel-tabelle th{
  border: 1px solid black;
  background-color: #3B9422;
  color: white;
  border-spacing: 5px;
  height: 60px;
  padding: 5px 10px;
}

table.vogel-tabelle td{
  border: 1px solid black;
  padding: 5px 5px;
}


@media screen and (max-width: 1100px) {
  #Team-Tabelle td{
    display: block;
    clear: both;
    align-items: center;
  }
}

.pdf_ergebnisse {
  text-decoration:none;
  background-color: #3B9422;
  border-radius: 3px;
  color: rgb(226,226,226);
  padding-left: 2px;
  padding-right: 3px;
}
.pdf_ergebnisse a:hover{
  color:white;
}

.voegel_link {
  text-decoration: none;
}

#footer{
  text-align: center;
  margin: 20px;
  padding-top: 40px;
  padding:10px;
  color: grey;
  font-family: 'Open Sans', sans-serif;
  display: block;
}

/* Burgermenü */

.burger{
  display: none;
  cursor: pointer;
}

.burger div{
  width: 25px;
  height: 3px;
  background-color: rgb(226,226,226);
  margin: 5px;
  transition: all 0.3s ease;
}


@media screen and (max-width: 2000px) {
  .nav-links{
    width: 90%;
  }
}

@media screen and (max-width: 1500px) {
  .nav-links{
    width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  body{
    overflow-x: hidden;
  }
  .nav-links{
    position: absolute;
    right: 0px;
    height: 91vh;
    top: 9vh;
    background-color: #87C975;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    z-index: 999;
  }
  .nav-links li{
    opacity: 0;
  }
  .burger {
    display: block;
  }
}

.nav-active{
  transform: translateX(0%);
  transition: transform 0.5s ease-in;
}

@keyframes navLinkFade{
  from{
    opacity: 0;
    transform: translateX(50px);
  }
  to{
    opacity: 1;
    transform: translateX(0px);
  }
}

/* Animation des Brugermenüs */

.toggle .line1{
  transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
  opacity: 0;
}
.toggle .line3{
  transform: rotate(+45deg) translate(-5px,-6px) ;
}


/* Vogelseiten */
.zurückbutton {
  display: flex;
  justify-content: center;
}

.zurückbutton button{
  align-items: center;
  border: none;
  background-color: #3B9422;
  color: rgb(226,226,226);
  padding: 10px 24px;
  cursor: pointer;
  border-radius: 2px;
}
.zurückbutton button:hover {
  color: white;
  text-shadow: 2px 2px 2px #284022;
}
