* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
}

body {
    font-family: "Courier New", Courier, monospace;
    font-size: 13px;
    line-height: 1.5;
}

.page {
    width: 100%;
    max-width: 1100px;
    margin: 23px 0 70px 6%;
}

/* TABLE OF CONTENTS */

.toc-box {
    width: 445px;
    min-height: 170px;
    border: 1px solid #fff;
}

.toc-title {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.line {
    width: 100%;
    border-top: 1px solid #fff;
}

.folders {
    padding: 16px 75px;
}

.folder {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    line-height: 19px;
}

.folder:hover {
    text-decoration: underline;
}

.arrow {
    width: 9px;
}

.hex {
    min-width: 40px;
}


/* DOLLAR SEPARATOR */

.dollar-lines {
    margin: 17px 0 17px 0;
    width: 450px;
    height: 34px;
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
    font-size: 13px;
    line-height: 16px;
}


/* SELECTED ENTRY */

.entry-box {
    width: 445px;
    min-height: 56px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 75px;
}

.back {
    color: #fff;
    text-decoration: none;
    margin-right: 3px;
}

.back:hover {
    text-decoration: underline;
}

.small-line {
    width: 450px;
    border-top: 1px solid #aaa;
    margin-top: 25px;
    margin-bottom: 20px;
}


/* TXT CONTENT */

.text {
    max-width: 1100px;
    padding-left: 12px;
    padding-right: 20px;
    overflow-wrap: anywhere;
}

.muted {
    color: #888;
}


/* IMAGES */

.images-title {
    margin: 35px 0 15px 12px;
}

.images {
    padding-left: 12px;
    padding-right: 20px;

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;

    max-width: 1050px;
}

.image-card {
    border: 1px solid #777;
    padding: 8px;
    background: #000;
}

.image-card a {
    display: block;
}

.image-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    background: #000;
}

.filename {
    margin-top: 8px;
    padding-top: 7px;
    border-top: 1px solid #444;

    color: #aaa;
    font-size: 11px;
    overflow-wrap: anywhere;
}


/* MOBILE */

@media (max-width: 650px) {

    body {
        font-size: 12px;
    }

    .page {
        width: calc(100% - 20px);
        margin: 12px 10px 50px;
    }

    .toc-box,
    .entry-box {
        width: 100%;
    }

    .folders,
    .entry-box {
        padding-left: 20px;
        padding-right: 20px;
    }

    .dollar-lines,
    .small-line {
        width: 100%;
    }

    .images {
        grid-template-columns: 1fr;
        padding-right: 0;
    }
    .files-grid {
    padding-left: 12px;
    padding-right: 20px;
    max-width: 1050px;

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    }
    .file-card {
    border: 1px solid #777;
    padding: 12px;
    }
    .file-card a {
    color: #fff;
    text-decoration: none;
    overflow-wrap: anywhere;
    }
    .file-card a:hover {
    text-decoration: underline;
    }
}
