/*	BODY MIT HINTERGRUND-FOTO */

body {
    background-color: #FF;
    background-image: url("Bilder/bild_hintergrund.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: right center;
    background-size: cover;
    color: #000;
    font-family: "Calibri", "Helvetica CY", "Arial", Sans-Serif;

//    min-height: 100vh;  // Seite auf ganze Höhe ziehen.
    margin: 0 auto;
    max-width: 80em;
    display: flex;
    flex-flow: column;
}

// Layout preparation
//header, footer {
//    flex: 1 1 80;
//}

//header h1 {
//    width: 40em;
//}

main {
    flex: 1;
    display: flex;
    flex-flow: column;
}


nav {
    flex: 1 1 0%;
}

article {
    flex: 3 1 0%;
}

aside {
    flex: 2 1 0%;
    display: none;
}

/* Styles - Links */

a {
    color: #000;
//    text-decoration: none;
}


nav a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: crimson;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -o-transition: color .2s ease;
}
	
/*	ÜBERSCHRIFTEN: NAME / KURZBESCHR. */

header img {
    margin-left: 5em;
}


h1 {
    font-size: 200%;
    letter-spacing: 2px;
    margin: 2em 1em 1em 1em;
    word-wrap: break-word;
    font-weight: bold;
}

h2 {
    font-size: 150%;
    letter-spacing: 1px;
}



/* Fliesstext */

p.Achtung {
    border: 3px solid black;
    background: white;
//    background-color: rgba(255,255,255,0.8);
    font-size: 120%;
    text-align: center;
//    color: red;
}

p.FB a {
    text-decoration: none;    
}

p.FB span {
    vertical-align: 50%;
}


ul li {
    list-style-type: circle;
}


/* Menu */

nav {
//    margin: 1em;
    padding: 0.2em;
    font-size: 120%;
    font-weight: bold;
}

nav ul {
    padding-top: 0em;
    padding-bottom: 0em;
    padding-left: 1em;
    padding-right: 0em;
}

nav li {
    list-style-type: none;
    padding-top: 0.1em;
}

article {
    margin: 0.5em;
    border: 1.5pt solid;
    padding: 15pt;
    background-color: rgba(255,255,255,0.45);
}

aside  {
}

/* Bilder-Liste, für Instrumente */

ul.PicList li {
    list-style-type: none;
    padding: 0.5em;
    height: 6em;
}

ul.PicList li.v {
    height: 24em;
}

ul.PicList li p img {
    float: left;
    margin-right: 1em;
    width: 10em;
    margin-bottom: 1em;
}

/* Fuss */

footer {
    margin: 1em;
    padding: 0.2em;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

footer div  {
    margin-top: 0.4em;
}

footer div.links  {
    flex: 1;
}

footer div.mitte  {
    flex: 1;
}

footer div.rechts  {
    flex: 1;
}

/* Smart Phones und Tablets mit mittlerer Auflösung */

@media all and (min-width: 35em) {
    header img {
	margin-right: 50px;
    }
    nav {
	margin: 1em;
    }
    nav li {
	padding-top: 1em;
	flex: 1 1 0%;
    }
    main {
	flex-flow: initial;
    }
    article {
	margin: 0.5em 1em 0.5em 0.5em;
    }
    aside {
	display: initial;
    }
    footer {
	flex-flow: initial;
    }
    footer div.links  {
	align: left;
    }

    footer div.mitte  {
	align: center;
    }

    footer div.rechts  {
	align: right;
    }
}
/* Large screens */

@media all and (min-width: 50em) {
    article {
	/* Der Article wird 2.5x so breit wie die beiden asides! */
	flex: 5 1 0%;
    }
}
