/* =====================================================
   DOCUMENT PAGES
   About
   Privacy Policy
   Terms and Conditions
   Account Deletion
   Support
   ===================================================== */

/* =====================================================
DOCUMENT PAGES
About
Privacy Policy
Terms and Conditions
Account Deletion
Support
===================================================== */

body {
    margin: 0;
    padding: 0;

    min-height: 100vh;

    color: var(--color-text-primary);

    font-family: var(--font-main);
    background: var(--color-screen);
}


/* Main document container */

#content-layer {
    width: 100%;
    box-sizing: border-box;
    padding: 48px 24px;
}


/* Document */

.document {
    max-width: 900px;
    margin: 0 auto;
}


/* Headings */

.document h1 {
    margin-top: 0;
    margin-bottom: 32px;

    font-size: 2.2rem;
    line-height: 1.2;
}

.document h2 {
    margin-top: 36px;
    margin-bottom: 16px;

    font-size: 1.4rem;
    line-height: 1.3;
}


/* Text */

.document p {
    margin-top: 0;
    margin-bottom: 16px;

    font-size: 1rem;
    line-height: 1.65;
}


/* Lists */

.document ul {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
}

.document li {
    margin-bottom: 8px;
    line-height: 1.6;
}


/* Links */

.document a {
    text-decoration: none;
}

.document a:hover {
    text-decoration: underline;
}


/* App screenshots */

.app-screenshots {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1rem;
}

.app-screenshots figure {
    flex: 1;
    margin: 0;
    border: 2px solid var(--color-text-primary);
    box-sizing: border-box;
}

.app-screenshots img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------- Email ---------- */
#support a {

    color: var(--color-text-primary);
    text-decoration: none;

}


#support a:hover {

    opacity: 1;
    text-decoration: underline;
    color: var(--color-text-primary);

}


/* Small screens */

@media (max-width: 600px) {

    #content-layer {
        padding: 32px 16px;
    }

    .document h1 {
        font-size: 1.8rem;
    }

    .document h2 {
        font-size: 1.25rem;
    }

    .document p {
        font-size: 0.95rem;
    }

    .app-screenshots {
        flex-direction: column;
    }
}