/* Style Sheet Datei zum Gästebuch */

/* Formatierung von Hintergrundfarbe und Schriftfarbe */

body {
	color: Yellow;
	background-color: rgb(06,46,26);
	background-image: none;
}

/* Festlegung des Fonts */

p,h1,h2,h3,h4,h5,h6,div,input,textarea {
	font-family: Arial;
}

/* Formatierung der großen Seitenüberschrift */

h1 {
	text-align:center;
	font-size: x-large;
	margin-left:25%;
	margin-right:25%;
	border-style: ridge ridge ridge ridge;
	border-width: 3px;
	border-color: Yellow;
	color: Yellow;
	background-color: #064126;
	margin-bottom:2em;
}

/* Formatierung von Hyperlinks */

a:link {
	color: White;
	text-decoration: none;
}
a:visited {
	color: #FFF8DC;
	text-decoration: underline;
}
a:hover {
	color: Silver;
	text-decoration:underline;
}
a:active {
	color: White;
	text-decoration:underline;
}

