* {margin: 0px; padding: 0px;}

/* Abstand nach unten */
h1, h2, h3, p, ul, ol { margin-bottom: 1em; } /* Buchstabe M */

/* Verschachtelte Listen ohne Abstand */


/* Abstand von links */
li { margin-left: 2em; }

/* Kommentar in CSS */
/*IMPORTIERT die Schriftart von der Google-Seite */
@import url('https://fonts.google.com/?category=Serif,Sans+Serif&selection.family=Roboto');

body {
	font-family: 'Pacifico', cursive;
	 /* background-color: #535b77;  */
	background-image: url('./img/pattern.jpg');
	color: white; /*schriftfarbe */
	
	
}


div#wrapper {
	position: absolute;
	top: 200px;
	background-color: #ff9900; /*hintergrundfarbe*/
	color: white; /*schriftfarbe */
	width: 1000px; /* Breite des Inhaltsbereichs */
	margin-left: 560px;	/* auto zentriert */
	margin-top: 5px;
	margin-bottom: 30px;
	
	border-color: white;
	border-width: 2px;
	border-style: solid;
}
div#header{
	position: absolute;
	top: 200px;
	background-color: #ff9900; /*hintergrundfarbe*/
	color: white; /*schriftfarbe */
	width: 1200px; /* Breite des Inhaltsbereichs */
	margin-left: -75px;	/* auto zentriert */
	margin-top: -300px;
	margin-bottom: 30px;
	border-color: white;
	border-width: 2px;
	border-style: solid;}
div#article{
	position: absolute;
	top: 200px;
	background-color: #ff9900; /*hintergrundfarbe*/
	color: white; /*schriftfarbe */
	width: 1000px; /* Breite des Inhaltsbereichs */
	margin-left: 50px;	/* auto zentriert */
	margin-left: 0px;	/* auto zentriert */
	margin-top: 5px;
	margin-bottom: 30px;
	border-color: white;
	border-width: 2px;
	border-style: solid;}
div#nav{
	position: absolute;
	top: 200px;
	background-color: #ff9900; /*hintergrundfarbe*/
	color: white; /*schriftfarbe */
	width: 1000px; /* Breite des Inhaltsbereichs */
	margin-left:0px;	/* auto zentriert */
	margin-top: 425px;
	margin-bottom: 30px;
	border-color: white;
	border-width: 2px;
border-style: solid;}
a {
	text-decoration: red; /* keine Unterstreichung bei links*/
	
}
div#footer{
	position:absolute;
	width:990px;
	background-color:#3333ff;
	height:125px;
	padding:5px;
	top: 1600px;
	left:560px;
	border-color: white;
	border-width: 2px;
	border-style: solid;
}

div#footer a{
	text-decoration:none;
	color:white;
}

div#footer a:hover{
	color:black;
}

