.wrapper {
    padding: 3.5rem 0 2rem 0;
    background: var(--secondary-color);
    position: relative;
    color: white;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    width: 90%;
    word-break: break-all;
}

.error-handler-wrapper.privacy-handler-error {
    margin: 0;
}

.privacy-handler-error {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    color: white;
    padding-bottom: 5px;
    font-family: 'Lustria';
}

.content p,
.content ul {
    padding-bottom: 1rem;
}

.content h1 {
    font-size: 1.6rem;
}

.content h2 {
    font-size: 1.4rem;
}

.content h3 {
    font-size: 1.2rem;
}

.content h4,
.content h5,
.content h6 {
    font-size: 1.1rem;
}

.content * {
    color: white;
    box-sizing: border-box;
    list-style: none;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

.content pre {
    overflow-x: auto;
}

.arrow {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

@media (max-width: 1030px) {
    .arrow {
        top: 1rem;
    }
}