                            * {
                            margin: 0 3px 0 0;
                            padding: 0;
                            font-family: Arial, sans-serif;
                            font-size: 14px;
                        }
                        
                        html {
                            background-color: black;
                        }
                        
                        body {
                            width: auto;
                            max-width: 800px;
                            height: auto;
                            background-color: bisque;
                            margin: 0 auto;
                        }
                        
                        p {
                            font-family: Verdana, Geneva, Tahoma, sans-serif;
                            font-size: 14px;
                            margin: 10px 0px;
                        }
                        
                        h1 {
                            font-family: Verdana, Geneva, Tahoma, sans-serif;
                            font-size: 20px;
                            margin: 10px 0px;
                        }
                        
                        h2 {
                            font-family: Verdana, Geneva, Tahoma, sans-serif;
                            font-size: 18px;
                            margin: 10px 0px;
                        }
                        
                        header {
                            background-color: gray;
                            width: 100%;
                            float: left;
                            border-bottom: 1px solid black;
                        }
                        
                        #bereichlogo {
                            color: white;
                            background-color: limegreen;
                            display: block;
                            padding: 0.5em;
                            text-decoration: none;
                            float: left;
                            width: auto;
                        }
                        
                        #steuerung {
                            
                        }
                        
                        #steuerung a {
                            display: block;
                            height: 100%;
                            width: 100%;
                            padding: 0.5em;
                            text-decoration: none;
                            /* keine Unterstreichung */
                            color: white;
                            /* Schriftfarbe weiß */
                            background-color: gray;
                            /* Hintergrundfarbe grau */
                        }
                        
                        #steuerung li {
                            list-style: none;
                            float: left;
                        }
                        
                        #steuerung a:hover {
                            color: black;
                            background: orange;
                        }
                        
                        .menue-button {
                            display: none;
                        }
                        
                        section {
                            padding: 1em;
                        }
                        /* CSS erweitern um MENÜ-Button und entsprechende Steuerung */
                        
                        @media only screen and (max-width:480px) {
                            
                            body {
                            width: auto;
                            height: auto;
                            }
                            
                            .menue-button {
                                display: block;
                            }
                            .menue-button {
                                background-color: darkblue;
                                display: block;
                                position: absolute;
                                right: 0;
                                top: 0;
                                padding: 0.5em;
                                color: white;
                                cursor: pointer;
                                text-decoration: none;
                            }
                            #bereichlogo {
                                width: 100%;
                            }
                            #steuerung {
                                float: left;
                                width: 100%;
                                display: none;
                            }
                            #steuerung li {
                                width: 100%;
                                border-bottom: 2px solid silver;
                            }
                            .menue-button:hover {
                                color: black;
                                background: orange;
                            }
                            #nav-menue:target #steuerung {
                                display: block;
                            }
                            #nav-menue:target .menue-button-beschr-open {
                                display: none;
                            }