body {
    margin: 10px auto;
    max-width: 90vw;
    font-family: sans-serif;
    color: #000000;
 	background-color: #FFFFFF;
    display: grid;
    grid-template-columns: auto 1fr;	
    grid-template-rows: auto 1fr auto;
    min-height: 95vh;
}

header, nav, main, article, section, aside, footer {
   border-radius: 0px 0.5em 0.5em;
   border: 1px solid;
   padding: 10px;
   margin: 10px;
}

#logo {
	grid-column: 1;
	grid-row:    1;
	display: flex;
    align-items: center;
    justify-content: center;
}

header {
	background: #A5DF00;
	border-color: #0B3B17;
	grid-column: 2;
	grid-row:    1;	
	min-height: auto;
	position: relative;		/*damit im untergeord. Container position:absolute funkt*/
}

nav {
	background: #A5DF00;
	border-color: #0B3B17;
	grid-column: 1;
	grid-row:    2;	
	position: relative;		/*damit im untergeord. Container position:absolute funkt*/
	min-height: 30em;		/*damit "Logout" nicht über das Menü schiebt*/	
}

main {
	background: #ededed;
	border-color: #0B3B17;
	grid-column: 2;
	grid-row:    2;	
}

footer {
	background: #A5DF00;
	border-color: #0B3B17;
	grid-column: 1 / span 2;
	grid-row:    3;					
	position: relative;		/*damit im untergeord. Container position:absolute funkt*/
}

/*Aussehen der Hyperlinks*/
a:link {
  color: #001a7a;
  text-decoration: none;
  font-weight: bold;

}
a:visited {
  color: #001a7a;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  color: red;
  text-decoration: underline;
  font-weight: bold;
}

h1.header {
    display: block;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

#hilfe_rechtsoben {			/*im übergeordneten Container(header) rechts-oben*/
	position: absolute;
    right: 1em;
	top: 1em;
	font-weight: bold;
	font-size: 22px;
}

#darkmode_unten {			/*im übergeordneten Container(header) unten*/
	position: absolute;
    right: 14em;
	bottom: 0em;
}

#logout_rechts {			/*im übergeordneten Container(header) rechts*/
	position: absolute;
    right: 1em;
	color: #f20000;
	font-weight: bold;
}

#impressum_rechts {			/*im übergeordneten Container(footer) rechts*/
	position: absolute;
    right: 1em;
}

hr { 
    width: 100%; 
/*    height: 3px; */
    margin: 0 auto;
    color: blue;
    background: #525252;
}

/* Buttons */
.btn_norm {
    cursor: pointer;
    font-size: 14px;
}
.btn_norm:hover {
	color: white;                  /*Schriftfarbe*/
    background-color: #7F7F7F;
} 

.btn_lehrstboerse {
    background-color: #A5DF00;
	color: black;
    cursor: pointer;
    font-size: 30px;
	border: none;
	border-radius: 12px;
	transition-duration: 0.4s;
    text-align: center;
    text-decoration: none;
	margin: 4px 2px;
    display: inline-block;
	padding: 15px 32px;
	
}
.btn_pdf {
    background-color: #BE0000;
	color: white;
    cursor: pointer;
    font-size: 14px;
    /*
	border: none;
	border-radius: 12px;
	transition-duration: 0.4s;
    text-align: center;
    text-decoration: none;
	margin: 4px 2px;
    display: inline-block;
	padding: 15px 32px;
	*/
}
.btn_pdf:hover {
    background-color: #A5DF00;
	color: white;                  /*Schriftfarbe*/
} 


/* Flipflop-Schalter für Darkmode */
.toggle label {
  position: relative;
  display: inline-block;
  width: 5em;
  height: 3em;
}

.toggle input {
  display: none;
}
 
.toggle .slider { /* Grundfläche */
  position: absolute;
  cursor: pointer;
  top: 1.5em; 
  left: 2em;
  width: 2em;
  height: 1.1em;
  background-color: #000000; 
  border-radius: 0.5em; 
  transition: all .3s ease-in-out;
}
 
.toggle  .slider::before {  /* verschiebbarer Button */
  position: absolute;
  content: "";
  height: 0.8em;
  width: 0.8em;
  left: .2em;
  bottom: .2em;
  background-color: white;
  border-radius: 50%;
  transition: all .3s ease-in-out;
}

.toggle input:checked + .slider {
  background-color: #5a9900; 
}
 
.toggle  input:checked + .slider::before {
  transform: translateX(0.9em);
}





/******   F12   Cache deaktivieren !!!!     *******/
