@charset "utf-8";
:root {
    --red: #DE500A;
    --blau: #0789c5;
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Rouge Script';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/rouge-script-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Charm';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/charm-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Verdana, Arial, sans-serif;
    background-image: url(../pics/Hintergrund_2.jpg);
    background-attachment: fixed;
    background-size: cover;
}
#container {
    display:flex;
    flex-direction: column;
    align-items: center;
    max-width: 1900px;
    margin: 0 auto;
}
article {
    width: 1140px;
    margin-bottom: 2em;
    padding: 0.6em 1.2em 1em 1.2em;
    background-color: rgba(255, 255, 255, 0.6);
    border: 2px solid #ccc;
}
article.breite100 {
    width: 100%;
}
article.breite50 {
    width: 50%;
}
article.breite30 {
    width: 30%;
}
.zeile {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1.4em;
}
.zeile:last-child {
    margin-bottom: 0;
}
.spalte, .spalte_links, .spalte_rechts {
    flex: 1;
}
.spalte_links {
    margin-right: 1.2em;
}
.spalte_rechts {
    margin-left: 1.2em;
}
.spalte img, .spalte_links img, .spalte_rechts img {
    width: 100%;
}
.zentriert {
    text-align: center;
}
.betont {
    font-weight: bold;
    font-size: 1.1em;
}
.klein {
    font-size: 0.8em;
}
a {
    outline: none;
    text-decoration: none;
    color: var(--blau);
    font-weight: bold;
}
a:hover {
    color: var(--red);
}
h1 {
    color: var(--blau);
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 0.3em;
}
h2 {
    color: rgb(35, 35, 35);
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 0.8em;
}
h2.head {
    color: var(--blau);
    margin-bottom: 0.4em;
}
h3 {
    color: rgb(35, 35, 35);
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0.6em;
}
ul>li {
    margin-bottom: 0.3em;
    margin-left: 1em;
}
p {
    margin-bottom: 0.5em;
}
p:last-child {
    margin-bottom: 0;
}
#down {
    flex-basis: 88%;
    text-align: left;
}
#excel_logo {
    flex-basis: 12%;
}
.datum {
    width: 100%;
    max-width: 1140px;
    margin-right: 6px;
    text-align: right;
    font-size: 0.8em;
    color: #666;
}
#Seitenanfang {
    position: fixed;
    right: 20px;
    bottom: 20px;
    font-size: 3em;
    color: var(--blau);
    z-index: 999;
    display: none;
}
#Seitenanfang a {
    opacity: 0.3;
    transition: color 1s, opacity 1s;
}
#Seitenanfang a:hover {
    color: var(--magenta);
    opacity: 0.6;
}
#hbExcel {
    text-align: center;
}
@media (max-width: 1160px) {
    body {
        font-size: 0.8em;
    }
    article {
        width: 870px;
    }
    #hbExcel img {
        width: 60%;
    }
    #down {
        text-align: center;
    }
}
@media (max-width: 890px) {
    .zeile {
        flex-direction: column;
        align-items: center;
    }
    article {
        width: 100%;
    }
    .spalte, .spalte_links, .spalte_rechts {
        flex: 100%;
        max-width: 50%;
        margin: 0 0 2em 0;
    }
    article.breite50 {
        width: 100%;
    }
    article.breite30 {
        width: 80%;
    }
}
@media (max-width: 500px) {
    .spalte, .spalte_links, .spalte_rechts {
        max-width: 100%;
    }
    article.breite30 {
        width: 100%;
    }
}
