.win9x {
    --color-windows-grey: #c0c0c0;
    --color-windows-grey-2: #c3c3c3;
    --color-bg: #fdffff;
    --color-header-bg-gradient-start: #000080;
    --color-header-bg-gradient-end: #1084d0;
    --color-header-shadow: var(--color-windows-grey);
    --color-header-link: #F0F0F0;
    --color-header-link-hover: #999AA5;
    --color-hr-border: var(--color-windows-grey);
    --color-table-th-bg: #5F6173;
    --color-table-th: #F0F0F0;
    --color-table-th-link-hover: #FFF;
    --color-link: #000;
    --color-link-hover: #42445A;
    --color-table-even: #FFFFFF;
    --color-table-odd: #FFFFFF;
    --color-table-row-hover: var(--color-windows-grey-2);
    --color-album-delete: darkred;
    --color-form-label: #595959;
    --color-search-bg: var(--color-windows-grey);
    --color-search-shadow: #000;
    --color-pagination-selected: #D3D3D7;
    --color-pagination-link: #000;
    --color-pagination-bg: #F0F0F0;
    --color-pagination-border: #000;
    --color-pagination-hover: #D3D3D7;
    --color-mobile-table-border: #B6B7BE;
    --color-collection-key: #232323;
    --color-collection-delete: #FF5252;
    --color-collection-importexport: #0000FF;
    --color-collection-public: #006400;

    --border-radius: 0px;
    --header-box-shadow: 0;

    --search-box-shadow:
            inset 1px 1px 0 #fff,
            inset -1px -1px 0 #808080;
    --search-border: 0;
}

body {
    background-image: url('/images/win98bg.jpg');
    background-repeat: repeat;
    background-color: var(--color-bg);
}

.settings-hidden, .settings-hidden:target {
    background-color: rgba(255, 255, 255, 0);
}

main {
    .settings-hidden {
        background: var(--color-windows-grey);
    }

    table {
        border: 2px solid #000000;
    }

    table td {
        border: 1px solid var(--color-hr-border);
    }

    table thead tr th {
        color: #000000;
        background-color: #c0c0c0;
        box-shadow:
                inset 1px 1px 0 #fff,
                inset -1px -1px 0 #808080;
        a, a:link, a:visited {
            color: #000000;
            text-decoration: none;
        }
    }
}

main {
    background: var(--color-windows-grey);
    border: 2px solid #000;
    box-shadow:
            inset 1px 1px 0 #fff,
            inset -1px -1px 0 #808080;
    padding: 8px;
}

input, textarea {
    color: #000;
    background: #fff;
    box-shadow:
            inset 1px 1px 0 #292929,
            inset -1px -1px 0 #e6e6e6;
}

input[type="submit"] {
    color: #000;
    background: #c0c0c0;
    border-radius: 0;
    border: 1px solid #000;
    box-shadow:
            inset 1px 1px 0 #fff,
            inset -1px -1px 0 #808080;
    cursor: pointer;
}

input[type="submit"]:active {
    border: 1px solid #000;
    box-shadow:
            inset 1px 1px 0 #808080,
            inset -1px -1px 0 #fff;
}

.pagination {
    a:link, a:visited, a:hover, .selected {
        color: #000;
        background: #c0c0c0;
        padding: 4px 16px;
        margin-left: 8px;
        border-radius: 0;
        border: 1px solid #000;
        box-shadow:
                inset 1px 1px 0 #fff,
                inset -1px -1px 0 #808080;
        cursor: pointer;
    }

    a:active {
        border: 1px solid #000;
        box-shadow:
                inset 1px 1px 0 #808080,
                inset -1px -1px 0 #fff;
    }
}

footer {
    overflow: hidden;
    white-space: nowrap;
}

footer hr {
    display: none;
}

footer span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
    width: 128px;
}

footer span::after {
    content: " - Second Edition (best viewed at 1024x768)";
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@media only screen and (max-width: 1040px) {
    .container {
        width: 95%;
        margin: 0 auto;
    }

    main {
        margin-top: 32px !important;
    }
}