/* Main Template - Body & Grid # header - sidebar - content - footer */
body {
	background: #3f5263 url('./img/crazybg.gif') repeat;
	background-size: 500px;
	color: #aaddaa;
	font-size: 14px;
	font-family: monospace;
}

/* colors 
#3f5263; | background blau
#aaddaa; | schrift grün
#303030; | box grau dunkel
#1a1a1a; | shadow
#46a146; | link drüber fahren grün
*/

.container {
	background: none;
	font-size: 15px;
	min-width: 666px;
	max-width: 777px;
	min-height: 300px;
	width: 45%;
	margin: 20px auto;
	display: grid;
	grid-template-columns: 150px auto;
	grid-template-rows: auto auto auto auto;
	grid-gap: 10px;
	grid-template-areas:
		"header header"
		"sidebar content"
		"footer footer";
}

.is {
	background: #303030;
	border: 1px solid #ada;
	box-shadow: -2px 2px 4px #ccc;
	padding: 5px 10px;
}

.item1 {
	grid-area: header;
	font-size: 18px;
	font-weight: bold;
}

.item2 {
	grid-area: sidebar;
	text-align: center;
}

.item3 {
	grid-area: content;
}

.item4 {
	grid-area: footer;
	text-align: right;
}

.ins {
	background: #3f5363;
	margin: 5px 0;
	padding: 3px 10px;
	/* border-radius: 25px; */
	border: 1px solid #ada;
}

.gridtitle {
	text-decoration: underline;
	text-shadow: -2px 2px 4px #ada;
	text-shadow: -2px 2px 4px #000;
}

li {
	line-height: 1.5;
}


/* <a>coloring</a> */
a:link, a:visited {
	color:#aaddaa;
	text-decoration: none;
}
a:hover, a:active {
	color:#46a146;
	text-decoration: none;
}

#mail {
	text-decoration: underline #eee;
}

/* this is for the outstanding pages */
.outstanding {
	max-width: 45%;
	margin: 15% auto 0 auto;
	padding: 15px;
	font-size: 25px;
}


/*
overflow
	scroll: unten und rechts scrollbar)
	auto:	nur auf der seite ...
	hidden: keine scrollbars allerdings schneidet es den text auch ab
*/

/*
link
	a:link		//unvisisited link
	a:visited	//visited link
	a:hover		//mouse over link | muss nach link und visited stehen
	a:active	//selected link | muss nach hover stehen
*/




