/* Mit Wildcard übergreifende Einstellungen festlegen */
/* * { box-sizing: border-box; } */



h1 {
    color: black; /* Schriftfarbe */
    width: 100%;  /* Damit der Text zentriert zur Seite ist 100% Breite der Seite */
    background-color: hsla(200,30%,60%,0.3);
    font-size: 22pt;
    font-family: arial, "lucida console", sans-serif;
    font-weight: lighter;
    font-style: normal;
}

body {
    text-align: center;
    background-color: #DFDFDF;

}
#seite {
    min-height: 100%;
}

#steuerung {
    background-color: #13E11A;
    float: left;
    width 30%;
}
#inhalt {
    background-color: #FF00B6;
    width 70%;
}

#fussbereich {
    clear: both;     /*Unterhalb der darüber liegenden Berreiche */
    position: absolute;
    bottom: 0;
    width: 100%;  /* Damit der Text zentriert zur Seite ist 100% Breite der Seite */
    font-size: 10pt; /* nicht so groß */
    font-style: oblique; /* ein bischen schräger als "normal" */
    color: grey;
}