/* =======================================
   Grundlayout & Typografie
======================================= */

* {
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}


body {
    margin: 0;
    font-family: Tahoma, sans-serif;
    font-size: 11px;
    color: #000;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Überschriften */
h1 {
    font-size: 20px;
    margin: 16px 0 8px;
}

h2 {
    font-size: 18px;
    margin: 12px 0 8px;
}

h3 {
    font-size: 16px;
    margin: 10px 0 16px;
}

h4 {
    font-size: 13px;
}
.blockschrift { text-transform: uppercase; 
}
.trennstrich { 
	width: 60px; 
	height: 2px; 
	background-color: #3399ff; 
	margin: 12px auto;
}


