@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');


li,a,button{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color:#24252A;
    text-decoration: none;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 10%;
    background-color: #056b85;
    position: sticky;
    top: 0px;
}

.nav_smaler {
    display: none;
    justify-items: center;
    align-items: center;
    padding: 1px 10%;
    background-color: #056b85;
    position: sticky;
    top: 0px;
    list-style: none;
}


footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-top: 8px;
    background-color: #056b85;
    margin-top: 25px;
}

.mitte {
    display: flex;
    justify-content: center;
    align-items: center;
}


.nav__links {
    list-style: none; 
}

.nav__links li {
    display: inline-block;
    padding: 0px 20px;  
}

.nav__links li a, .nav_smaler li a {
    transition: all 0.3s ease 0s; 
}

.nav__links li a, .nav_smaler a:hover {
    color: #04323e;
}

button {
    padding:9px 25px;
    background-color: #03637b; 
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s; 
}

button:hover { 
    background-color: #0581a0;  

}

#teaser {
    width: 100%;
    height: 300px;
    padding-bottom: 0px;
}

#teaser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#statista {
    max-width: 500px;
    height: 370px;
    width: 100%;
}

#statista img, #speicher img, #projekt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#speicher {
    max-width: 502px;
    height: 250px;
    width: 100%;
}

#projekt {
    max-width: 580px;
    height: 300px;
    width: 100%;
}


@media screen and (min-width: 800px) {
    #teaser {
        height: 600px;
    }
}

@media (max-width:1100px) {
    header {
        padding: 1px;
    }
    footer {
        padding: 1px
    }
    .nav__links {
        display: none;
    }
    .nav_smaler {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

#datenmüll, #impressum, #datenschutz {
    padding-top: 10px;
}

.dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 16px; 
    border: none;
    outline: none;
    color: #24252A;
    padding: 9px 25px;
    background-color: #03637b;
    font-family: "Montseratt",; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #056b85;
    min-width: 160px;
    box-shadow: 0px 8px 10px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover, .dropdown-content a:focus {
    background-color: #0581a0;
    
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover {
    background-color: #03637b;
    border-radius: 50px;
    transition: all 0.3s ease;
      touch-action: manipulation;
  }

  .show {
    display: block;
  }

  .dropdown-content a:focus {
    outline: none;
  }

 
