/* Stylesheet für die Übungsseiten aus "Little Boxes, Teil 1" */
/* border (basis) */

* { padding: 0; margin: 0; }
html { 
  height: 100%; 
  margin-bottom: 1px; 
}
body {
  background-color: #8c8c8c;
  color: white;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: small;
}
div#wrapper {
  background-color: white;
  color: black;
  width: 720px;
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
}
div#kopfbereich {
  background-color: #f3c600;
  color: black;
}
img#logo {
  background-color: white;
  color: black;
}
h1 { font-size: 150%; }
h2 { font-size: 130%; }
address {
  text-align: center;
  font-size: 80%;
  font-style: normal;
  letter-spacing: 2px;
  line-height: 1.5;
}
a {
  text-decoration: none;
  /* outline: none; */ /* nur wenn es echt stört */
}
a:link { color: #d90000; }
a:visited { color: #cc6666; }
a:hover,
a:focus {
  border-bottom: 1px solid #d90000;
}
a:active {
  color: white;
  background-color: #d90000;
}
div#textbereich a {
  border-bottom: 1px dotted #cc0000;
}
div#textbereich a:hover,
div#textbereich a:focus {
  border-bottom: 1px solid #d90000;
}
div#kopfbereich p span {
  color: #d90000;
}

/* Restaurierung der Abstände nach Reset */
h2, p, ul, ol { margin-bottom: 1em; }  
ul ul { margin-bottom: 0; } 
li { margin-left: 1em; }

