body 
{
    font-family: Arial;
    min-height: 100vh;
    height: 100%;
    margin: 0;
    background-color: #f8f9fa;
}
h1
{
    text-align: center;
    font-size: xx-large;
}
h2
{
    text-align: center;
    font-size: x-large;

}



.Navigation_Container
{
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%;
}
.Navigation
{
    justify-content: space-around;
    display:flex;
    width: 100%;
    max-width: 1400px;
    font-size: 25px;
    color: black;
    margin: 0 auto;
}
.Navigation a:hover, a:active
{
    color: #1abc9c;
    text-decoration: underline;
}
.Navigation a
{
    color: #343a40;
    text-decoration: none;
    padding: 15px;
  

}
.Logo_Container
{ 
    width: 200px;
    padding: 0;
    border: 3px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
.Logo_Container img
{
    width: 100%; 
    height: auto; 
    display: block;
}
@media (max-width: 1000px) {
  .Logo_Container {
   width: 100%;
   max-width: 150px;
   height: auto;
    
  }
}
@media (max-width: 1000px) {
  .Logo_Container img {
   
   width: 140%;
    
  }
}
@media (max-width: 1000px) {
  .Navigation_Container {
    margin-top: 20px;
    padding-left: 0;
    margin-left: 0;
    border: none;
  }
}
/* Menü-Button (Hamburger) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 3.5rem;
  cursor: pointer;
  padding: 24px;
}

/* Mobile Ansicht */
@media (max-width: 1000px) {
  .Navigation {
    display: none;
    flex-direction: column;
    width: 100%;
    font-size: 26px;
    background-color: #f8f8f8;
    border-top: 1px solid #ccc;
    
  }

  .Navigation.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .Navigation a {
    padding: 24px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 28px;
  }
}

.Kontakt_div 
{
    font-size: x-large;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 7%; /* Fügt Abstand zwischen den Elementen hinzu */
}
        
.Chef, .Projektleiter {
    text-align: center;
}

.Chef img, .Projektleiter img {
    width: 100%;
    height: auto;
    max-width: 500px;
}
          
@media (max-width: 1000px) 
{
    .Kontakt_div 
    {
        flex-direction: column; /* Die Divs werden untereinander angeordnet */
        align-items: center; /* Zentriert die Divs horizontal */
        gap: 40px;
    }
}

.Impressum
{
    width: 100%;
    margin-top: 200px;
    background-color: darkgrey;
    color: white;
    align-items: center;
    text-align: center;
    padding: 20px;
}