        body {
            font-family: Inter, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            background-color: white;
            color: rgb(86, 79, 77);
        }
        header {
            background: rgb(23, 19, 18);
            color: rgb(212, 144, 16);
            /*color: rgb(237, 189, 16);*/
            /*color: white;*/
            padding: 20px 20px 20px 0px;
            /*text-align: center;*/
            font-size: 2em;
            font-weight: bold;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        .head {
            max-width: 800px;
            padding: 0px 0px 0px 20px;
            margin: auto;
            /*background: red;*/
        }
        .foot {
            max-width: 800px;
            padding: 0px 0px 0px 20px;
            margin: auto;
            /*background: red;*/
        }
        .container {
            max-width: 800px;
            margin: auto;
            padding: 100px 20px 20px 20px; /* Extra padding to avoid content being hidden behind header */
            background: white;
        }
        h1 {
            color: rgb(33, 28, 27); /* Neue Schriftfarbe für h1 */
 			margin-top: 50px; /* Abstand oberhalb von h1 */
        }
        h2 {
            color: rgb(33, 28, 27); /* Neue Schriftfarbe für h2 */
			margin-top: 50px; /* Abstand oberhalb von h2 */
        }
        a {
            text-decoration: none; /* Entfernt den Unterstrich */
            color: white; /* Setzt die Schriftfarbe auf Weiß */
        }
		a:hover {
			color: rgb(212, 144, 16);
			text-decoration: underline;
		}
        .kontakt-link {
            color: white; /* Standardfarbe */
            font-weight: normal;
            margin-left: 80px; /* Abstand vom Firmennamen */
            text-decoration: none; /* Kein Unterstrich */
			font-size: 0.6em; /* Kleinere Schriftgröße */
        }
        .kontakt-link:hover {
            color: rgb(212, 144, 16); /* Farbe beim Darüberfahren */
            text-decoration: underline;
        }
        .remote-link {
            color: rgb(33, 28, 27); /* Standardfarbe */
            text-decoration: none; /* Kein Unterstrich */
        }
        .remote-link:hover {
            color: rgb(212, 144, 16); /* Farbe beim Darüberfahren */
            text-decoration: underline;
        }
	    footer {
            background: rgb(23, 19, 18);
            color: white;
            /*text-align: center;*/
            padding: 20px 20px 20px 0px;
            margin-top: 20px;
        }
        html {
	        scroll-behavior: smooth;
        }
