/*
Style Datei für die Webseite.
Erstellt von Marcus Federkeil
Datum 18.05.2020
*/

*
{
  	box-sizing: border-box;
}

/* Definition Body */
body
{
	/* Festlegen Hintergrund Farbe */
	background-color: #cccccc;
	/* Festlegen der Schriftart */
	font-family: "Times New Roman";
	font-size: 12pt;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	/* Festlegen der Größe */
	margin: 30px 50px 50px 50px;
}
/* Ende der Definition Body */

/* Definition Kopbereich */
header
{
	border-style: solid;
	border-radius: 12px;
	border-color: black;
	border-width: 2px;
/*	background-color: #FB9902; */
   background-image: url("/img/windows-vista.jpg");
	margin-bottom: 0.5em;
}
	
.kopueberschr
{
	font-size: 24pt;
	font-style: oblique;
	text-align: center;
	color: white;
}
/* Ende der Definition Kopfbereich */

/*Definition der Links*/
/* unvisited link */
a:link
{
  	color: black;
  	text-decoration: none;
  	font-style: italic;
}

/* visited link */
a:visited
{
  	color: black;
}

/* mouse over link */
a:hover
{
  text-decoration: none;
  color: red;
}

/* selected link */
a:active
{
  color: green;
}
/* Ende der Link Definition */

/* Definition Fussbereich */
footer
{		
	border-style: solid;
	border-radius: 6px;
	border-color: black;
/*	background-color: #FB9902; */
	background-image: url("/img/windows-vista.jpg");
	font-size: 12pt;
	padding-left: 5px;
}
/* Ende der Definition Fussbereich */

/* Definition der Linkbuttons */
.button
{
  background-color: #C0C0C0;
  border: 2px solid black;
  border-radius: 12px;
  color: black;
  padding: 5px 11px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 4px 2px;
  cursor: pointer;
}

.button:active
{
  background-color: #3e8e41;
  box-shadow: 0 2px #666;
  transform: translateY(2px);
}
/* Ende der Definition Linkbuttons */

/* Definition der Themenüberschrift */
.themenueberschrift
{
	font-size: 28pt;
	font-style: oblique;
	text-align: center;
	color: black;
	letter-spacing: 5px;
}
/* Ende der Definition der Themenüberschrift */
.rssborder
{
	border-style: solid;
	border-radius: 6px;
	border-color: black;
	background-color: whitesmoke;;
	font-size: 12pt;
	padding-left: 5px;
}