/* Gesche Harms Website 2016/2 */

/* ==================================================================

Basis-Stylesheet mit Reset und Restaurierung der Abstände

Datei: fundament.css
Datum: 2016-01-03
Autor: Gesche Harms

====================================================================*/

@media all {
	
/* ==================================================================

Teil I - Reset

====================================================================*/
	
html {overflow: scroll;}
	body, div
	h1, h2, h3, h4, h5, h6,
	p, blockquote, pre, code,
	ul, ol, li,
	table, th, td,
	form, fieldset, legend, input, textarea {
		padding: 0; margin: 0;
		}

/* ==================================================================

Teil II - Abstände restaurieren

====================================================================*/
	
	h2, h3, h4, h5, h6,
	p, blockquote, pre, code,
	ul, ol { margin-bottom: .5em;}
	ul, ol { margin-left: 2em; }
	ul ul, ul ol, ol ol, ol ul { margin-bottom: 0;}
	blockquote { margin: 1em 2em;}
	
/* ==================================================================

Teil III - Neue HTML5 Elemente für ältere Browser als Block-Elemente definieren

====================================================================*/
	
header, nav, main, aside, footer,
section, article, figure, figcaption,
audio, video {
	display: block;
}


} /* Ende @media - nicht löschen! */

/* ==================================================================

Ende fundament.css

====================================================================*/


/* ==================================================================


Stylesheet für die Gestaltung am Bildschirm*/

@media screen {

	/* Teil I - Allgemeine Styles */
	
	/*clearfix Sorgt dafür, das umgebendes Element von gefloateten Elementen diese umfasst und die volle Höhe einnimmt */

	.clearfix:before,
	.clearfix:after {
	content:"";
	display:table;
	 }
	.clearfix:after {clear:both; }


/* ======== Ende clearfix ==*/
	
html {
    background-color: white;
}
	
body {
	background-color: white;
	font-family: 'Oxygen', sans-serif;
	font-size: 100%;
	}
	
h2, h3, mainnav a { font-family: 'Oxygen', sans-serif;
		font-weight: 700; 
		color: #44B8E9;
			}

h1 {font-family: 'Oxygen', sans-serif;
	font-weight: 700;
	color: #44B8E9;
	font-size: 2em;}
h2 {font-size: 1.5em;
	font-weight: 400;
	color: #44B8E9;
	text-align: left;}
h3 {font-size: 1.8em;}
h4 {font-size: 0.8em;}
h5 {font-size: 0.8em;
	font-weight: 400;
	line-height:1.3em;
	}
h6 {font-size: 0.4em;}
p  {font-size: 1em;
	line-height:1.3em;
	color:#333333;
		}
a {font-size: 1.1em;}

	.fliesstext-fett {
		color: #333333;
		font-weight:700;
		line-height: 1.8;
	}

	/* Beginn Anweisung Verhalten normale Links */

a:link {color: #44B8E9;
	text-decoration: none;
	}
a:visited {color: #44B8E9;
	text-decoration: none;
	}
a:focus {color: #9ADAFA;
	text-decoration: none;
	}
a:hover {color: #9ADAFA; 
	text-decoration: none;
	}
a:active {color: #333333;
	text-decoration: none;
	}
/* Ende Anweisung normale Links */

	
	/* ==================================================================

Teil II - Styles für die Layoutbereiche
	
====================================================================*/

#wrapper {
	background-color: white;
	max-width: 1024px;
	color:black;
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 100px;
	margin-left: auto;
}

header {
	max-width: 100%;
	max-height: 200px;
	margin: auto;
	background-color: rgba(255,255,255,1);
	overflow: hidden;
}

header .images {
	max-width: 300px;
	min-width: 300px;
	margin: 0px 0px 0px 20px;
	float:left;
}	
		
header .mainnav {
	max-width: 100%;
	min-width: 300px;
	margin: 20px 0px 0px 0px;
	float:left;
}	 
		
		
header img{
	max-height: 60px;
	padding: 0px 15px 0px 0px;
	/*border: solid #cccccc 3px;*/
}
		
#mainnav {
	max-width:100%; 
	min-width: 300px;
	margin: auto;
	float:left;
	}
		
#mainnav img{
	max-width: 100px;
	}

/* Beginn Anweisung für das Verhalten der Links in der Navigation */

#mainnav a:link {
	color: #44B8E9;
	text-decoration: none;
	padding:  0 5px 5px 5px;
}
#mainnav a:visited {
	color: #44B8E9;
	text-decoration: none;
	padding: 0 5px 5px 5px;
}
#mainnav a:focus {
	color: #9ADAFA;
	text-decoration: none;
	padding:  0 5px 5px 5px;
}
#mainnav a:hover {
	color: #9ADAFA;
	text-decoration: none;
	padding:  0 5px 5px 5px;
}
	
#mainnav a:active {
	color: #333333;
	text-decoration: none ;
	padding:  0px 5px 5px 5px;
}

.ul_mainnav {
	list-style-type: none;
	max-width: 900px;
	margin: auto;
}
	
/* "overflow: auto;" im umgebenden ul Element hebt das float der li Elemente wieder auf */

li {
	width: auto;
	height: auto;
	float: left;
	text-align: center;
	padding: 3px 10px 3px 10px;
}

li a {
	text-decoration: none;
	color: #9ADAFA;
	vertical-align: middle;
	display: block;
	/* damit sich die Links auf die gesamte Fläche der <li>-Elemente ausdehnen lassen und somit der ganze Button anklickbar ist ("width: 100%" für IE6) */
	width: 100%;
	margin:auto;
	padding: 5px;
}
	
li a img {
	max-height:21px;
	margin:auto;
	padding: 1px 10px 3px 10px;
}
	
li .logo img {
	width: 35px;
	height: auto;
}

/* Ende die Anweisung für das Verhalten und Gestaltung der Links in der Navigation */

main {
	max-width: 90%;
	min-height: 500px;
	margin: 30px auto 30px auto;
	background-color: white;
	text-align: center;
}
	
main p, main h2{
	background-color: white;
	text-align: left;
	max-width: 600px;
	margin: auto;
	}
	
	
	/* Gestaltung section in main */
		
.logoportfolio{
	border-top: 1px solid #dddddd;
	margin:50px auto 20px auto;
}
	
.logoportfolio img{
	width: 35px;
	height: auto;
	border:8px solid white;
	margin:-26px auto 0 auto;
}
	
.logoportfolio p{
	text-align: center;
	color: #aaaaaa;
}
	
	#boxrowaktuelles {
	max-width: 540px;
	margin: auto;	
}
	
#boxrowgrafikdesign {
	max-width: 900px;
	margin: auto;	
}
	
#boxrowillustration {
	max-width:900px;
	margin: auto;
}
	
#boxrowkunst {
	/* 2 Spalten 360px, 3 Spalten 540px, 4 Spalten 725px*/
	max-width: 900px;
	margin: auto;
}
	
div.box{
	width: 280px;
	height: 280px;
	float:left;
}
	
@media only screen and (min-width: 400px){
		div.box{
	width: 200px;
	height: 200px;
	float:left;
	}
}
	
@media only screen and (min-width: 1024px){
	div.box{
	width: 180px;
	height: 180px;
	float:left;
	}
}
	
	
div.box img {
	max-width: 95%;
	height: 95%;
	border-radius: 50%;
	margin: 5px;
	border: #dddddd solid 1px;
}
	
	div.box iframe {
	max-width: 95%;
	height: 95%;
	border-radius: 50%;
	margin: 5px;
	border: #dddddd solid 1px;
}
	
	/* Gestaltung Bild box-aktuelles*/
	
div.box-aktuelles{
	width: 280px;
	height: 280px;
	margin:auto;
}
	
@media only screen and (min-width: 400px){
		div.box-aktuelles{
	width: 200px;
	height: 200px;
	margin:auto;
	}
}
	
@media only screen and (min-width: 1024px){
	div.box-aktuelles{
	width: 180px;
	height: 180px;
	margin:auto;
	}
}
	
	
div.box-aktuelles img {
	max-width: 95%;
	height: 95%;
	border-radius: 50%;
	margin: 5px;
	/*border: #dddddd solid 1px;*/
}
	
	/* Ende Gestaltung Bild box-aktuelles*/
	
	/* Gestaltung Text box-aktuelles*/
	div.aktuelles {
	max-width: 600px;
	min-width: 300px;
	margin: 30px auto 20px auto;
	padding: 1em 0 2em 0;
}
	
	
 div.aktuelles p, div.aktuelles a, div.aktuelles figure, div.aktuelles figcaption {
	font-weight: 400;
	text-align: center;
	color: #aaaaaa;
	max-width:600px;
	min-width: 300px;
	margin: auto;
}
	
	
	div.aktuelles a {
	color: #44B8E9;
}
	
/* Ende Gestaltung Text box-aktuelles*/
	

	/* Gestaltung Bild in Fliesstext in section in main */	
	
.sectiontext img {
	max-width: 33%;
	max-height: 33%;
	margin: 5px;
	}
		
	/* Gestaltung Bildergalerie in main */	
	

div.galeriemitlightbox {
	width: 100%;
	min-width: 300px;
	margin: 30px auto 20px auto;
	padding: 1em 0 2em 0;
}
	
	
div.galeriemitlightbox h2, div.galeriemitlightbox p, div.galeriemitlightbox a, div.galeriemitlightbox figure, div.galeriemitlightbox figcaption {
	font-weight: 400;
	color: #aaaaaa;
	max-width:100%;
	min-width: 300px;
	margin: auto;
}
	
	
div.galeriemitlightbox h2 {
	font-size: 1.5em;
	line-height: 1.5;
	text-align: left;
}
	
	div.galeriemitlightbox a {
	color: #44B8E9;
}
	
div.galeriemitlightbox img {
 	max-width: 80%;
	min-width: 300px;
	margin: auto;
 }
	


/* Ende Gestaltung Bildergalerie in main */
	
	
	
footer {
	max-width: 1024px;
	height: auto;
	margin-top: 60px;
}

footer .logocontainer{
	max-width: 280px;
	margin:auto;
}
	

footer .logoportfolio{
	max-width: 100%;
	margin:50px auto 20px auto;
}
	
footer .logoportfolio img{
	width: 35px;
	height: auto;
	padding-bottom: 20px;
	border:white solid 8px;
	margin:-25px 8px 0px 8px;
}
	
.footernav{
	max-width: 300px;
	margin: -20px auto 30px auto;
}
	
 #footer .lastline {
	width: 1000px;
	height: 260px; 
	color: #44B8E9;
	margin: auto;
	padding: 10px;
	font-size: 1em;
	line-height: 1.5;
	color: #FFFFFF;
	border-radius: 50%;
} 
	
.lastline p,  .lastline a {
	color: #44B8E9;
	max-width: 100%;
	/*padding: 10px 0px 10px 0px;*/
	margin: 10px 10px 0px 10px;
	text-align: center;
}
	
	
.lastline img {
	max-width: 35px;
	padding-bottom: 20px;
	margin:20px 5px -30px 5px;	
}


/* ==================================================================

Ende bildschirm.css

====================================================================*/
