<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --background-color: #228f13;
    --darker-background-color: #155c0c;
    --accent-color: #3de63d;
    --text-color: #fff;
    --navbar-height: 80px;
}

* {
    margin: 0;
    padding: 0;font-size: 22px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;

}

html {
    height: 100%;
    background: #000;
    
}


body {
    height: 100%;
    color: var(--text-color);
}

nav {
    height: var(--navbar-height);
    background: var(--background-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    margin-left: 30px;
    font-family: Dragon;
    font-size: 35px;
    font-variant: small-caps;
    text-decoration: none;
    color: var(--text-color);
}

nav ul {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}

nav li {
    height: 100%;
    width: 150px;
    text-align: center;
    position: relative;
}

nav li:hover {
    background: var(--accent-color);
}

nav ul a {
    height: 100%;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: var(--text-color);
}

.dropdown {
    height: min-content;
    width: 150px;
    background: var(--background-color);

    display: none;
    flex-direction: column;

    position: absolute;
    left: 0;
    z-index: 1;
    top: var(--navbar-height);
}

.dropdown li {
    height: 70px;
    width: 100%;
    z-index: 1;
}

.dropdown li a {
    justify-content: center;
    padding-left: 30px;
    width: calc(100% - 30px);
    z-index: 1;
}

nav li:hover .dropdown {
    display: flex;
}

nav input[type="checkbox"] {
    display: none;
}

.expandable_li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle_button {
    width: 30px;
    height: 23px;

    position:  absolute;
    top: 25px;
    right: 25px;

    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.bar {
    height: 4px;
    width: 100%;
    background: var(--text-color);
    border-radius: 100px;
}

@media(max-width: 900px) {
    .toggle_button {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    nav ul {
        height: min-content;
        width: 100%;
        background: var(--background-color);
        display: none;
        top: var(--navbar-height);
        position: fixed;
        left: 0;
        width: 100%;
        z-index: 999;
    }

    body {
        padding-top: var(--navbar-height); /* FÃžge Abstand fÃžr den feststehenden Header hinzu */
    }

    nav li {
        height: min-content;
        width: 100%;
    }

    nav ul a {
        padding: 30px 0;
    }

    .expandable_li {
        display: block;
    }

    .expandable_li label {
        padding: 30px 0;
        cursor: pointer;
        display: block;
    }

    .expandable_li:hover .dropdown {
        display: none;
    }

    .expandable_li input[type="checkbox"]:checked ~ .dropdown {
        display: block;
    }

    .dropdown {
        position: static;
        width: 100%;
        z-index: 2;
    }

    .dropdown li {
        padding: 0;
        display: block;
        position: static;
        background: var(--darker-background-color);
        z-index: 1;
    }
    
    .dropdown li a {
        width: 100%;
        padding: 0;
        justify-content: center;
        z-index: 1;
    }

    #toggle_button:checked ~ ul {
        display: block;
    }

}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap');


H1 span {
    font-family: Dragon;
    color: #228f13;
    font-weight: 500;
    font-size: 30px;
}


@font-face {
    font-family: Dragon;
    src: url(fonts/Dragom2000-Regular.ttf);
    font-style: normal;
    font-weight: 100;
    text-decoration: none;
}

.footer{
    background-color: #228f13;
    padding: 70px 0;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    bottom: 0;
}

.container{
    max-width: 1170px;
    margin: auto;
}

ul{
    list-style: none;
}

.footer-col {
width: 25%;
padding: 0 15px;
overflow: hidden;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom:  -10px;
    background-color: black;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li::not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a{
    font-size: 19px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;transition: all .3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

h1 {
    text-align: center;
    justify-content: center;
    margin-top: 150px;
}</pre></body></html>