/* Schriftart Goldmarie einbinden */
@font-face {
    font-family: 'Goldmarie'; /* Name der Schriftart */
    src: url('/fonts/goldmarie.ttf') format('truetype'); /* Pfad zur Schriftart */
    font-weight: normal;
    font-style: normal;
}

/* Schriftart 18thCtrKurTxt einbinden */
@font-face {
    font-family: 'Kurrent'; /* Name der Schriftart */
    src: url('/fonts/18thCtrKurTxt.ttf') format('truetype'); /* Pfad zur Schriftart */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Trirong';
    src: url('../fonts/Trirong-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Trirong';
    src: url('../fonts/Trirong-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


html {
    font-size: 16px; /* Basis-Schriftgröße */
}

/* Globale Einstellungen */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #353244;
	

}

/* Container für zentrierten Inhalt */
.container {
    max-width: 1140px;
    margin: 0 auto; /* Zentriert den Container */
    padding: 0 10px; /* Sorgt für Abstand an den Seiten */
	background-color: #f6efe7;	
	margin-top: 20px; /* Abstand oben (zwischen Header und Container) */

}