@font-face {
    font-family: "Courgette";
    src: url(Courgette.ttf);
    font-display: swap;
}

body {
    font-family: 'Courgette';
}

h1 {
    font-size: 36px;
    color: #81c12e;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
}

.GR {
    color: #a7b984;
    font-size: 20px;
}

p {
    font-size: 20px;
}

.Seitenbereich {
    text-align: left;
    /* Inhalt wieder links wegen alten IEs*/
    margin: 0 auto;
    /* Zentrierung mitte */
    width: 1250px;
}

LK a:link {
    text-decoration: none;
    font-size: 18px;
    color: #ffffff;
    background-color: #64696c;
}

LK a:visited {
    text-decoration: none;
    font-size: 18px;
    color: #ffffff;
    background-color: #64696c;
}

LK a:hover {
    text-decoration: none;
    font-size: 18px;
    color: #64696c;
    background-color: #ffffff;
}

LK a:active {
    text-decoration: none;
    font-size: 18px;
    color: #ffffff;
}

LK a:focus {
    text-decoration: none;
    font-size: 18px;
}

nav a:link {
    text-decoration: none;
    font-size: 18px;
    color: #ffffff;
    background-color: #64696c;
}

nav a:visited {
    text-decoration: none;
    font-size: 18px;
    color: #ffffff;
    background-color: #64696c;
}

nav a:hover {
    text-decoration: none;
    font-size: 18px;
    color: #64696c;
    background-color: #ffffff;
}

nav a:active {
    text-decoration: none;
    font-size: 18px;
    color: #ffffff;
}

nav a:focus {
    text-decoration: none;
    font-size: 18px;
}

nav {
    position: fixed;
    top: 0px;
    font-size: 18px;
    background-color: #64696c;
    width: 100%;
    height: 48px;
    z-index: 100;
}

nav ul {
    text-align: center;
}

nav li {
    position: relative;
    float: left;
    top: 4px;
    list-style: none;
}

nav ul ul {
    position: absolute;
    font: 0/0 serif;
    top: 1.0em;
    padding: 0px;
    z-index: -1;
}

nav ul li:hover ul {
    font: inherit;
    z-index: 100;
}

nav ul ul li {
    float: none;
    display: block;
}

nav a,
nav span {
    background-color: #64696c;
    color: #81c12d;
    display: block;
    border-style: solid;
    border-width: 1px;
    border-color: #64696c;
    padding-left: 5px;
    text-decoration: none;
    width: 120px;
}

nav a:focus,
nav a:hover {
    background-color: #64696c;
    color: #81c12d;
}

nav ul ul a:hover {
    background-color: #a7b984;
}

nav ul ul span {
    background-color: #64696c;
    color: #81c12d;
    text-align: left;
}

nav span {
    background-color: #64696c;
    color: #81c12d;
}

nav ul ul li a:visited {
    color: #ffffff;
    background-color: #969da2;
    font-size: 12px;
}

nav ul ul li a:link {
    color: #ffffff;
    background-color: #969da2;
    font-size: 12px;
    text-align: left;
}

nav ul ul li a:hover {
    color: #306000;
    background-color: #969da2;
    font-size: 12px;
}

.flex-container {
    display: flex;
    flex-direction: column;
    text-align: left;
    /* Inhalt wieder links wegen alten IEs*/
    margin: 0 auto;
    /* Zentrierung mitte */
}


/* große Viewports */

@media all and (min-width: 800px) {
    .flex-container {
        flex-direction: row;
        width: 100%;
    }
}

.flex-item {
    flex: 1;
    margin-left: 25px;
    margin-right: 25px;
}