<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @author clubdrei.com - Medienagentur OG, Rico Wosnitzka
 * @version 1.0
 */
:root {
    --c3-global-color-primary: #e3007d;
    --c3-global-color-secondary: #1e1e1c;
}

/**
 * Fonts
 */
@font-face {
    font-family: 'Adagio Sans';
    src: url('../fonts/adagio-sans-regular.woff') format('woff'), url('../fonts/adagio-sans-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Adagio Sans';
    src: url('../fonts/adagio-sans-semibold.woff') format('woff'), url('../fonts/adagio-sans-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/**
 * Defaults
 */
body,
html {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: 'Adagio Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--c3-global-color-secondary);
    line-height: 1.6;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

* &gt; *:last-child {
    margin-bottom: 0;
}

p {
    margin-top: 0;
    margin-bottom: 20px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto;
}

/**
 * Headlines
 */
.c3-header__title,
.c3-footer__title,
.c3-section__title {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

.c3-footer__title {
    display: inline-block;
    padding: 0 10px;
    background-color: var(--c3-global-color-primary);
    color: #fff;
}

.c3-section__title {
    font-size: inherit;
}

/**
 * Linking
 */
.c3-section__link {
    color: inherit;
    text-decoration: none;
}

.c3-section__link--highlight {
    font-weight: 600;
    color: var(--c3-global-color-primary);
}

/**
 * Listings
 */
.c3-item-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px -20px;
    padding: 0;
}

.c3-item-list:last-child {
    margin-bottom: 0;
}

.c3-item-list__item {
    display: block;
    margin: 0 0 0 20px;
    padding: 0;
}

/**
 * Page
 */
.c3-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    /*height: calc(100% - 50px);*/
    height: 100%;
    background: url('../img/meadow.svg') bottom center / contain no-repeat;
}

.c3-section-main {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 100px auto 0 auto;
    padding: 40px;
}

/**
 * Header
 */
.c3-header {
    margin-bottom: 40px;
}

/**
 * Sections
 */
.c3-inner-section {
    margin-bottom: 20px;
    text-align: center;
}

/**
 * Footer
 */
.c3-footer {
    text-align: center;
}

.c3-footer__label {
    font-size: 0.8rem;
    line-height: 2.4;
}

/**
 * Badge
 */
.c3-badge {
    display: block;
    width: 140px;
    height: 140px;
    position: fixed;
    top: 60px;
    right: 80px;
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    z-index: 99;
    border-radius: 100%;
    background: url('../img/badge.svg') center / contain no-repeat;
}

.c3-badge__options {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    -webkit-transform: translate(-50%, 100%);
    margin: 0;
    padding: 0;
}

.c3-badge__options:before {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background: url('../img/follow-us.svg') center / contain no-repeat;
}

.c3-badge__option {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
}

.c3-badge__option-link {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
}

.c3-badge__option-link--facebook {
    background-image: url('../img/facebook.svg');
}

.c3-badge__option-link--instagram {
    background-image: url('../img/instagram.svg');
}

/**
 * Notification Bar
 */
.c3-notification-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    padding: 10px;
    background-color: var(--c3-global-color-primary);
    font-size: 1rem;
    color: #fff;
    text-align: center;
}

/**
 * Breakpoints
 */
@media (max-width: 800px) {
    body,
    html {
        font-size: 12px;
    }

    .c3-section-main {
        margin: 40px auto 0 auto;
        padding: 20px;
    }

    .c3-badge {
        width: 100px;
        height: 100px;
        top: auto;
        right: 20px;
        bottom: 20px;
    }

    .c3-badge__options {
        transform: translate(-50%, 50%);
        -webkit-transform: translate(-50%, 50%);
    }

    .c3-badge__options:before {
        width: 60px;
        height: 60px;
    }
}</pre></body></html>