body, html {
  margin: 0;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
}

@media only screen and (max-width: 650px) {
   body {
      padding: px; /* Hier die gewünschte Polsterung hinzufügen */
      left: 0;
   }

   main {
      max-width: calc(100% - 0px); /* Hier die gewünschte Polsterung abziehen */
      margin: 0px auto; /* Anpassung des Rands für Handys */
     width: 90%;
      position: absolute;
      float: center;
      left: 0%;
      right: 0%;
   }
}


#menuToggle {
  position: fixed;
  top: 40px;
  left: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s;
  z-index: 2000;
}

#menuToggle.active {
  color: #fff;
}

#menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1050;
  top: 0;
  left: 0;
  background-color: #333;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 32px;
}

#menu a {
  padding: 16px;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  display: block;
  transition: 0.3s;
  border-bottom: 1px solid #555;
}

#menu a:hover {
  background-color: #555;
}

#impressum {
	color: #fff;
}

#content {
  margin-left: 0;
  padding: 80px;
  transition: margin-left 0.5s;
}

header {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0; /* Setzt den Margin auf 0, um am oberen Rand zu starten */
  z-index: 1000; /* Stellen Sie sicher, dass der Header über anderen Elementen liegt */
}

header h1 {
  margin: 0;
}

header p {
  font-size: 16px;
}

main {
  margin-top: 20px;
}

main h2 {
  color: #333;
}

main p {
  color: #555;
}

.link.services a.download-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.link.contact a.contact-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #4caf50; /* Grüne Farbe für Kontaktbutton */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.link.services {
  text-align: center;
}

.link.contact {
  text-align: center;
}

.link.contact a.contact-button:hover {
  background-color: #45a049; /* Dunklere grüne Farbe bei Hover */
}

.link.services a.download-button:hover {
  background-color: #0056b3;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

footer.a {
	color: #fff
}