/* Allgemeines Layout */

body {
        background-color: white;
        font-family: Arial, Helvetica, sans-serif;
        color: black;
}

h1 {    
        font-weight: normal;
        text-decoration: none;
        font-size: x-large;
        color: limegreen;
}

h2 {
	font-weight: normal;
	text-decoration: none;
	font-size: large;
	color: green;
}

h3 {
        font-weight: normal;
        text-decoration: none;
	font-style: oblique;
        font-size: medium;
        color: green;
}

hr {color: green;}

/* Hinweise */

p.hinweis {
	font-weight: normal;
        text-decoration: none;
        font-size: medium;
        color: darkorange;
        font-style: oblique;
}

/* Links */

a.ds {
	text-decoration: none;
	color: green;
	font-size: small;
	font-style: oblique;
}

a.ds:link, a.ds:visited {
	text-decoration: none;
	color: green;
}

a.ds:active {color: orange;}
a.ds:hover {color: darkorange;}


/* Footer */

p.aktuell {
        font-weight: normal;
        text-decoration: none;
        font-size: small;
        color: lightgrey;
        font-style: oblique;
}

/* Tabellen */

th.logo {
        font-weight: bold;
        text-decoration: none;
        font-size: xx-large;
        color: limegreen;
}
td.logo {
        font-weight: normal;
        text-decoration: none;
        font-size: small;
        color: darkgrey;
}
th.oben {
        font-weight: normal;
        text-decoration: none;
        font-size: x-large;     
        color: green;
}

/* Navigation */

.inhalt {
        padding: 16px;
}

.sticky {
        position: fixed;
        top: 0;
        width: 100%;
}   
    
.sticky + .inhalt {
        padding-top: 30px;
}   

.navbar {
  overflow: hidden;
  background-color: green;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: limegreen;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: green;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

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

/* Fuer responsives Design*/

#computer {display: block;}
#handy {display: none;}

@media screen and (max-width: 1024px) {
        #computer {display: none;}
        #handy {display: block;}
}

