@charset "utf-8";
/* CSS Document */
html {
    background: #e6e9e9;
    background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
    -webkit-font-smoothing: antialiased;
}

body {
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #545454;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px 10px 10px;
}

/* Warnleiste */
.warnung {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #000;
    overflow: hidden;
    z-index: 9999;
    display: flex;
    align-items: center;
}

/* Lauftext */
.warnung span {
    color: #d3d3d3;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
    position: relative;
    animation: lauftext 20s linear infinite;
}

/* Animation von links nach rechts */
@keyframes lauftext {
    from {
        transform: translateX(100vw);
    }
    to {
        transform: translateX(-100%);
    }
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #0083e8;
}

b, strong {
    font-weight: 600;
}

samp {
    display: none;
}

img {
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    border: 10px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: block;
    margin: 1.3em auto;
    max-width: 95%;
}

@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}