/* Datei style.css */

html {
	margin: 0;
	padding: 0;
	border: 0;
}
body {
	margin-left: 50px;
	background-color: floralwhite;
	color: purple;
	font-family: Arial;
	font-size: 20px;
}
h1 {
	font-size: 30px ;
	text-align: center;
	color: #FFFFFF; /* white */
	background-color: 	#003399; /*darkblue */
}
h2 {
	font-size: 25px ;
	text-align: center;
	color: #FFFFFF; /* white */
	background-color: 	#003399; /*darkblue */
}
h3 {
	font-size: 22px ;
	text-align: center;
	color: #FFFFFF; /* white */
	background-color: #0066CC; /* blue-ish */
}
a:link {
  	color: lime; 
}
a:hover { 
  	background-color: black;
	color: red; 
}
a:visited { 
  	color: white; 
}
ul, ol {
	color: white;
	background-color: #0066CC; /* blue-ish */
}
span {
 	padding: .4em .8em; 
  	background: #0066CC;
  	border: thin solid green;
  	border-radius: 0 .4em .4em; 
  	box-shadow: 0 .2em .4em gray; 
  	color: white;
  	text-shadow: 0 -.05em .05em #333; 
  	font-size: 90%; 
  	line-height: 1.5;
}
nav ul {
	background-color: #0066CC; /* blue-ish */
	list-style-type: none;
}
table, td {
	color: white;
	margin: 50px;
	padding: 10px;
	table-layout: fixed;
	width: 1700px;
	border-collapse: collapse;
	border: thin solid black;
	background-color: teal;
}
th {
	color: yellow;
	font-size: 25px;
	padding: 10px;
	border: thin solid black;
	background-color: teal;
}

/* Ende style.css */
