html, body
{

    background-color: #000000;


    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: Verdana;
    font-size: 15pt;
    color: #fff;
    min-width: 100%;
    min-height: 100vh;
    margin: 0 auto;


/*
navigation

#nav-button width: 44px; height: 44px;

Schriftgröße: 16px oder Größer
Text: 40-60 Zeichen pro Zeile!
*/

}

h1 {
  color: white;
  font-family: verdana;
}

p  {
  color: white;
  font-family: Verdana;
  font-size: 16px;
  line-height: 1.5;
  max-width: 70ch;
  margin: 0 auto;
}


.navigation {

  height: 75px;
    width: 80%;
    float: left;
}

.content {
    
    background: #111;
    padding: 15px 20px;
    max-width: 1600px;
    margin: auto;
    text-align: center;

}

.sidebar {

   height: 75px;
    width:  1600px;
    float: left;
    opacity:1.0;
}

.sidebar2 {
  border: 5px outset red;
  background-color: lightblue;
  text-align: center;
}

footer {
  background: #111;
  padding: 30px 20px;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.footer-nav a:hover {
  color: #999;
}

/*Überarbeitung*/

/* Desktop Ansicht*/

.header1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #111;
    padding: 15px 20px;
}


.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
}

.nav a:hover {
  color: #999;
}


/*Hamburger-Button erstmal verstecken*/

.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: auto;
}

/*Dropdown verstecken*/
.dropdown {
    position: relative;
}

/*Navigation Untermenü*/

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #222;
    min-width: 150px;
    flex-direction: column;
}

/**Navigation Links im Dropdown*/

.dropdown-content a {
    padding: 10px;
    display: block;
    color: white;
    text-decoration: none;
} 

/*Hover Effekt für Desktop*/

.dropdown:hover .dropdown-content {
    display: flex;
}


/* Mobile Ansicht */

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #222;
    padding: 15px;
    border-radius: 10px;
  }

  .nav.active {
    display: flex;
  }
  
  .dropdown-content {
      position: static;
      display: none;
      background: none;      
  }
  
  .dropdown.active .dropdown-content {
      display: flex;
      flex-direction: column;
  }
  
  
.designkontaktform {
    
    font-size: 30px;
}  
  
}