
:root {
    color-scheme: dark;
    --bg: #000000;
    --surface: #141414;
    --text: #d0d0d0;
    --text-dim: #aaaaaa;
    --link: #e8e8e8;
    --text-bright: #f2f2f2;
    --rule: #2e2e2e;
    --border: #333333;
    --border-radius: 8px;
}

html, body {
    height: 100%;
    padding: 0px;
    margin: 0px;
    border: 0px none transparent
}

body {
    color: var(--text);
    font-size: 15px;
    line-height: 1.55;
    font-family: "segoe ui",tahoma,"lucida grande",verdana,sans-serif;
    background-color: var(--bg);
    border: 0px none transparent
}

a {
    color: var(--link);
    text-decoration: none;
}

    a:not([href]) {
        cursor: pointer;
    }

h1, h2, h3 {
    line-height: 1.25;
}

h2, h3 {
    font-weight: 600;
}

h1, .subtitle {
    margin: 0;
}

h1 {
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 7px;
}

h2 {
    font-size: 21px;
    border-bottom: 1px solid var(--rule);
    margin: 36px 0px 10px 0px;
}

h3 {
    font-size: 17px;
    margin: 5px 0;
}

.subtitle {
    color: var(--text-dim);
    font-size: 17px;
    letter-spacing: 8px;
    line-height: 13px;
    margin-top: 3px
}

ul {
    list-style-type: disc;
    padding-left: 22px;

    ul {
        list-style-type: circle;
    }

    ul {
        list-style-type: none
    }
}

#page {
    max-width: 1250px;
    margin: 0px auto;
    padding: 0px 30px;
    box-sizing: border-box;
}

#h1AndSubtitle {
    text-align: center;
    padding: 30px;
}

div > h2:first-child {
    margin-top: 0;
}

a:hover {
    color: var(--text-bright);
    text-decoration: underline;
}

#topBg, .sideBg, .corner {
    display: none;
}

#topBg {
    height: 53px;
    background: url("../images/top.png") repeat-x;
    position: absolute;
    top: 0px;
    left: 10px;
    right: 10px;
    border-top: 10px solid black;
    z-index: -1;
}

.sideBg {
    position: fixed;
    top: 0px;
    bottom: 0px;
    width: 61px;
    background: url("../images/left.png") repeat-y;
    z-index: -2;
}

#leftBg {
    left: 10px;
    background-image: url("../images/left.png");
}

#rightBg {
    right: 10px;
    background-image: url("../images/right.png");
}

.corner {
    position: absolute;
    top: 10px;
    height: 100px;
    width: 100px;
    z-index: -1
}

#leftCorner {
    left: 10px;
    background-image: url("../images/top_left.png");
}

#rightCorner {
    right: 10px;
    background-image: url("../images/top_right.png");
}

#flex {
    display: flex;
    gap: 32px;
    margin: 8px 0px;
}

#left a, #right a {
    font-size: 14px;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

#left {
    flex: 0 1 auto;

    img {
        height: 200px;
        display: block;
        margin-bottom: 4px;
        border-radius: var(--border-radius);
    }
}

#center {
    flex: 1 1 auto;

    h3 {
        margin-bottom: 0px;
    }

    span {
        font-style: italic;
    }

    a {
        text-decoration: underline;
    }
}

#right {
    flex: 0 1 auto;
    position: relative;

    a {
        position: relative;
        z-index: 1;
        height: 25px;
        width: 300px;
        padding: 210px 5px 5px 5px;
        background-repeat: no-repeat;
        background-size: 300px;
    }
}

.tip {
    color: var(--text);
    background-color: var(--surface);
    height: 198px;
    width: 398px;
    padding: 10px 320px 10px 10px;
    display: none;
    position: absolute;
    right: 0;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
}

#mav3riq {
    background-image: url("../images/sites/mav3riq.jpg");
}

#wesspace {
    background-image: url("../images/sites/wesspace.jpg");
}

#niteliters {
    background-image: url("../images/sites/niteliters.jpg");
}

#twitdeck {
    margin: 0px 30px;

    a {
        font-size: 18px;
        padding: 5px;
        display: block
    }
}

@media (max-width:1000px) {
    #h1AndSubtitle {
        padding-top: 10px;
        padding-bottom: 15px;
    }

    #topBg, .sideBg, .corner {
        display: none;
    }

    #flex {
        display: block;
    }

    #left img {
        margin-left: auto;
        margin-right: auto;
    }

    #right a {
        padding-left: 0px;
        padding-right: 0px;
        margin: 0px auto;
    }

    ul {
        padding-left: 15px;
    }

    .tip {
        display: none !important;
    }
}
