/* === BASIS === */
body {
    background: linear-gradient(90deg, #020024 0%, #090979 35%, #00d4ff 100%);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin: 10px auto;
    text-align: center;
    hyphens: auto;
    color: white;
}

/* === LAYOUT === */
#page {
    max-width: 65%;
    margin: 0 auto;
}

#header,
#footer {
    padding: 0 3.125%;
}

#content-wrapper {
    display: flex;
    gap: 2%;
    padding: 0 3.125%;
}

#content {
    flex: 2;
    overflow: hidden;
}

#sidebar {
    flex: 1;
}

/* Responsive */
@media (max-width: 480px) {
    #content-wrapper {
        flex-direction: column;
    }
}

/* === TEXT === */
h1 {
    color: white;
    line-height: 1;
}

h2 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 0;
}

p {
    hyphens: auto;
}

ul li {
    list-style: none;
    color: white;
}

/* === LINKS === */
a {
    text-decoration: none;
    font-weight: bold;
}

a:link {
    color: #00ffff;
}

a:visited,
a:hover {
    color: #AFEEEE;
}

a.speziell {
    color: yellow;
}

/* === BILDER === */
img {
    max-width: 100%;
    height: auto;
    border: 1px solid silver;
    margin: 3px;
}

/* Bildformate */
.img-portrait { width: 90px; height: 120px; }
.img-landscape { width: 160px; height: 120px; }
.img-small { width: 68px; height: 90px; }
.img-tiny { width: 67px; height: 120px; }

/* === UTILITY CLASSES === */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.margin-top { margin-top: 20px; }
.margin-small { margin-top: 6px; font-size: 12px; }

/* === TITEL === */
.titel1 {
    font-weight: bold;
    font-size: 24px;
    margin-top: -60px;
}

.titel2 {
    font-size: 12px;
}

/* === SUMMARY === */
.summary,
.summary-left,
.summary-center {
    color: yellow;
    font-weight: bold;
}

.summary { float: right; }
.summary-left { float: left; }
.summary-center {
    text-align: center;
    margin-top: 12px;
}

/* === ARTICLE === */
article {
    max-width: 960px;
    margin: 0 auto;
    width: 98%;
    text-align: left;
}

/* === PRELOAD === */
#preload {
    display: none;
}