/* Stylesheet für die Übungsseiten aus dem Buch "Little Boxes, Teil 1" */
/* Hyperlinks gestalten (fertig) */

body { 
  background-color: #8c8c8c;
  color: white; 
  font-family: Verdana, Arial, Helvetica, sans-serif; 
  font-size: small; 
}
div#wrapper { 
  background-color: white; 
  color: black; 
}
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 { /* Unterstreichung entfernen */
  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; 
}