/* Link zur Startseite */
.homelink {
    text-align:center;
    margin-top: 1em;
}

.homelink a {
    color: rgb(64, 64, 64);
}

/* Navigation */
.custom-navi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #f0f0f0;
    padding: 10px 0;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.custom-navi a {
    text-decoration: none;
    color: inherit;
    padding: 0 10px;
    position: relative;
}

.custom-navi a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: #000;
}

@media (prefers-color-scheme: dark) {
    .custom-navi {
        background-color: #333333;
    }
    .custom-navi a, .custom-navi a:not(:last-child)::after {
        color: #fff;
    }
}

/* Artikelvorschau */
.post-preview {
    padding-bottom: 70px;
    margin-bottom: 1em;
}

.post-preview h2 {
    font-size: 100%;
}

.navbar {
    display: none;
}

.intro-header {
    margin-top: 20px;
    margin-bottom: 40px;
}

.intro-header .page-heading h1 {
    font-size: 45px;
}
