/* Auswahl durch HTML-Element-Namen */

h2 {
   color: red; 
}

/* Auswahl durch Klasse */

.besondererHintergrund {
    background-color: yellowgreen;
}

#ersterAbschnitt {
    font-size: 130%;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    width: 50%;
}

.hervorgehobeneBox {
    background-color: yellow;
    border: 50px solid blue;
    padding: 15px;
    margin: 30px;
}

#bereich {
    color: orangered;
    background-color: gray;
}

#zweiAbschnitte {
    background-color: aqua;
}

.links {
    float: left;
}

.rechts {
    float: right;
}