html {
    overflow-x: clip; 
}

body.offline-page {

    margin-top: 0;
    padding-top: 0;
    background: white;
}

#offline .text-section {
    position: relative;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

#offline p {
    font-size: 28px;
    text-align: center;
    line-height: 1.08;
    margin: 0;
    letter-spacing: 0,3%;
}

#offline .headline {
    position: sticky;
    top: -30px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 100%);
    font-size: 40px;
    text-align: center;
    transform: translateY(30px);
    line-height: 0.5;
    padding: 30px 0 60px 0;
    box-sizing: border-box;
    z-index: 1;
}

.impressum-wrap {
    position: fixed;
    bottom: 0;
    left: 5px;
}

.impressum {
    padding: 10px 15px;
    left: 5px;
    font-size: 24px;
    line-height: 1;
    text-align: left;
    transform: translateX(-78px);
    box-sizing: border-box;
}

.impressum-content {
    padding-left: 15px;
    font-size: 24px;
    line-height: 1;
    text-align: left;
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.impressum-content.open {
    max-height: 300px;
}

:root {
    --indent-strength: 120px;
}

.indent-reveal {
    display: block;
    translate: 0 0;
    transition: translate 0.6s ease;
}

.indent-reveal.is-visible {
    translate: var(--indent-strength) 0;
}

.indent-reveal.indent-left.is-visible {
    translate: calc(var(--indent-strength) * -1) 0;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: black;
    z-index: 9999;
}


mark {
    transition: all 1s;
    background: transparent;
}

mark.is-visible {  
    text-decoration: underline;
    text-decoration-thickness: 1.8px;
}

