/* Allgemeine Elemente */

body {
	background-color: ghostwhite;
  color: dimgray;
  font-family: sans-serif;
}

h1 {
  color: darkorange;
  font-family: sans-serif;
  font-variant: small-caps;
  text-align: center;
}

h2 {
  color: darkorange;
}

h3 {
  color: darkorange;
  margin-left: 1em;
}

h4 {
  color: darkorange;;
  margin-left: 2em;
}


a {
  color: darkorange;
}

a:hover {
  color: orangered;
}

a:visited {
  color: orangered;
}

/* Klassen */

ul.themen {
  list-style-type: none;
  margin-left: 1em;
}


/* Individuelle Container */

/* head */

#head {
	font-family: monospace;
  text-align: right;
}

/* main */

#main {
	background-color: ivory;
	border: 1px solid darkorange;
	border-radius: 1em;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2px;
  padding: 1em;
  max-width: 800px;
}

/* inhaltsverzeichnis */

#inhaltsverzeichnis {
	text-align: center;
}

#inhaltsverzeichnis a {
	font-family: monospace;
  text-decoration: none;
}

#inhaltsverzeichnis a:before {
  content:"[ ";
}

#inhaltsverzeichnis a:after {
  content:" ]";
}

