/*
* erste Versuche mit CSS
* das eigene MLOGO-CSS-DESIGN
*/


* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/*
 * hellgelb #F5F6CE
 * hellblau #81BEF7
 * hellorgange #F79F81
    font:bold;
 */
html {
  background-color: white;
}

body {
    margin: 0 0em;
    font-family: sans-serif;
    background-color: lightblue;
}

header {
    width: 100%;
    background-color:#CEECF5;
}

footer {
    background-color:#CEECF5;
}

h1, h2, h3 {
    text-align: center;
}
/*
h2 {
    text-align: center;
}
*/

#seiten_titel {
    font-size:2em;
	text-align: center;
    font-weight: bold;
    margin-top: .2em;
}

#back_links {
    font-size:1.3em;
	text-align: center;
    font-weight: bold;
}

#last_change {
    font-size:1em;
	text-align: left;
}


