
body {  /* Stilanpassung für den body-Teil*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  /* Schriftart Festlegung*/
    margin: 0;  /* Außenabstand zu umliegenden Elementen*/
    padding: 0;  /* Innenabstand zum Rahmen*/
    background-color: #f8f8f8;  /* Hintergrundfarbe*/
    color: #333;  /* Textfarbe */
}

header {  /*Stilanpassung für die Kopfzeile */
    background-color: #4CAF50;
    color: #fff;
    text-align: center;  /* Textausrichtung -> mittig */
    padding: 1em;
}


nav {  /* Stilanpassung für die Navigationsleiste */
    background-color: #5cb85c;
    padding: 1em;
}


nav ul {  /* Stilanpassung für die Liste in der Navigationsleiste */
    list-style: none;  /* entfernen der Listenpunkte */
    margin: 0;
    padding: 0;
    text-align:center
    }

nav li {  /* Stilanpassung für die Navigationselemente in der Liste der Navigationsleiste */
    display: inline;  /* horizontale Anzeige der Listenelemente */
    margin-right: 10px;
    text-align:center;
    line-height: 35px 
}

nav a {  /* Stilanpassung für die Verknüpfungen in der Navigationsleiste */
    text-decoration: none;  /* Entfernung Unterstriche der Verknüpfungen*/
    color: #fff;
    font-weight: bold;  /* fettgedruckte Schrift */
}


section {  /* Stilanpassung der einzelnen Abschnitte des Dokuments */
    margin-bottom: 40px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;  /* Eckenabrundung */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);  /* Schatten der Abschnitte*/
}

.undersection{  /* Stilanpassung der einzelnen Unterbschnitte des Dokuments */
    margin-bottom: 40px;
    background-color: #e8e8e8;
    padding: 20px;
    border-radius: 8px;  /* Eckenabrundung */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);  /* Schatten der Abschnitte*/
}

footer {  /* Stilanpassung des Footer-Elements*/
  position: fixed;  /* feste Position -> unterer Bildschirmrand*/
  left: 0;
  bottom: 0;
  width: 100%;  /* volle Breite des Footers */
  line-height: 35px;  /* Zeilenhöhe*/
}

/* Gliederungs-Sektion */
.gliederung {
  background-color: #fff; /* Hintergrundfarbe */
  padding: 15px; /* Innenabstand */
  border-left: 20px solid #4CAF50; /* Linke Rahmenfarbe und Breite */
  border-right: 20px solid #4CAF50; /* Rechte Rahmenfarbe und Breite */
  margin-bottom: 20px; /* Abstand nach unten */
}

.gliederung h2 {
  font-size: 20px; /* Überschriftengröße */
  font-weight: bold; /* Überschriftenstärke */
  color: #4CAF50; /* Überschriftenfarbe */
  margin-bottom: 10px; /* Abstand nach unten */
  margin-left: 2%;
  list-style: none;

}

.gliederung a { 
    text-decoration: none; /*Text dekoration entfernen*/
    color: #4CAF50; /*Farbe Hintergund*/
    font-weight: bold; /*Schrifteinstellung*/
}


.btn {
    background-color: #5cb85c; /* Hintergund */
    border: none; /* Entfernen der Ränder */
    color: white; /* Textfarbe */
    padding: 12px 16px; /* Paddingeinstellungen */
    font-size: 16px; /* Textgröße */
    cursor: pointer; /* Cursor Einstellungen zu pointer*/
  }

