/* FONTS */
@font-face {
    font-family: Terminus;
    src: url('/fonts/TerminusModern.ttf') format('truetype');
}

@font-face {
    font-family: Retro;
    src: url('/fonts/3270.ttf') format('truetype');
}

@font-face {
    font-family: C64;
    src: url('/fonts/C64.ttf') format('truetype');
}

@font-face {
    font-family: Apple2;
    src: url('/fonts/Apple2.ttf') format('truetype');
}

/* COLORS */
.color-base {
    color: #6f88a2;
}

.color-alt {
    color: #619d87;
}

.color-highlight {
    color: #96c3f1;
}

.color-bg-light {
    color: #1A1616;
}

.color-bg-med {
    color: #212121;
}

.color-bg-dark {
    color: #000000;
}

.color-footer-body {
    color: #666666;
}

/**
 * Main Variables
 */
:root {
    --fontSize: 1.1rem;
    --phoneWidth: (max-width:684px);
    --tabletWidth: (max-width:900px);

    /**
     * Color Scheme
     */
    --color-base: #6f88a2;
    --color-alt: #619d87;
    --color-highlight: #96c3f1;
    --color-bg-light: #1A1616;
    --color-bg-med: #212121;
    --color-bg-dark: #000000;
    --color-footer-body: #666666;
}

.main {
    background-color: var(--color-bg-med);
    font-size: var(--fontSize);
    font-family: Terminus;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.main-logo {
    padding-top: 20px;
}

.container{
    flex-direction: column;
    font-size: var(--fontSize);
    text-align: center;
    color: var(--color-highlight);
    background-color: var(--color-bg-med);
}

a {
    text-decoration: none;
    color: inherit
}

a:hover {
    text-decoration: underline;
}


/* MAIN */
.container,
.content {
    font-size: var(--fontSize);
    background-color: var(--color-bg-med);
    justify-content: center;
}

.content {
    font-family: Terminus;
    font-size: var(--fontSize);
    background-color: var(--color-bg-med);
    flex-direction: column;
    flex: 1 auto;
    align-items: center;
    padding: 10px;
    display: inline-block;
    margin: 0px auto 80px;
}

@media (max-width:683px) {
    .content {
        margin-top: 0;
        padding: 10px;
        max-width: 600px;
    }
    .flex-row {
        flex-direction: column;
    }
}

/* ATTRIBUTES */
.glow {
    text-shadow: var(--color-alt) 0px 0px 8px;
}

.glow-box {
    box-shadow: var(--color-alt) 0px 0px 120px;
}

a:link {
    text-decoration: none;
    text-shadow: rgba(240,240,240, .8) 0px 0px 10px;
}

.menu-icon {
    padding: 5px;
    justify-content: center;
    line-height: 1;
    cursor: pointer;
    display: flex;
}

.menu {
    font-size: 1.1rem;
    font-family: Terminus;
    margin-right: 18px;
    padding-right: 24px;
}

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

.menu a {
    text-decoration: none
}


/* DISPLAY MOBILE */
@media screen and (max-width:768px) {
    .content-desktop {
        display: none;
    }
    .content-mobile {
        display: block;
    }
    .menu {
        position: absolute;
        display: none;
    }
    .menu-alt {
        position: absolute;
        background: var(--color-bg-med);
        margin: 0;
        list-style: none;
        border-radius: 5px;
        border: none;
        top: 50px;
        right: 10px;
        padding-left: 10px;
    }
    .toggle-mobile-menu {
        display: block;
    }
    .menu-desktop {
        display: none;
    }
    .side {
        border: #96c3f1 1px solid;
    }
    .hidden {
        display: none
    }
}
.content-h1 {
    font-family: Retro;
    font-size: 1.4rem;
    color: var(--color-highlight);
}
.content-h2 {
    font-family: Retro;
    font-size: 1.3rem;
    color: var(--color-highlight);
}
.content-p {
    font-family: Terminus;
    font-size: 1.0rem;
}
.content-container {
    color: var(--color-highlight);
    width: 100%;
    max-width: 800px;
    text-align: left;
    margin: auto;
}
@media (max-width:899px) {
    .content-container {
        max-width: 800px;
        margin: auto;
    }
}

.content-meta {
    font-size: 1rem;
    margin-bottom: 10px
}

@media (max-width:683px) {
    .content-meta {
        font-size: .85rem
    }
}

.content-more {
    padding-left: 10px;
    color: var(--color-alt);
    font-family: Retro;
    font-size: 1rem;
    margin-bottom: 10px
}

@media (max-width:683px) {
    .content-more {
        font-size: .85rem
    }
}

.content-fa {
    display: inline-block;
    top: 0.15rem;
    height: 1rem;
    width: 1rem;
    position: relative;
}

.content-fa-p {
    color: var(--color-highlight);
    display: inline-block;
    left: -0.2rem;
    height: 0.6rem;
    width: 0.6rem;
    position: relative;
}

.content-summary {
    margin-top: 20px;
    margin-bottom: 20px;
}

.header {
    border-bottom: #96c3f1 1px solid;
    background: #fafafa;
    background: var(--color-bg-light);
    display: flex;
    padding: 12px

}

.post-content {
    padding-left: 10px;
    margin-top: 3rem;
}

code {
    overflow-wrap: break-word;
}

.code-toolbar .toolbar-item a {
    display: inline-flex;
    padding: 3px 8px;
    margin-bottom: 5px;
    background: #eaeaea;
    background: var(--color-bg-light);
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    border-radius: 8px;
    border: 1px solid transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none
}

.code-toolbar .toolbar-item a,
.header {
    position: relative;
    align-items: center;
    justify-content: center

}



body {
    margin: 0;
    padding: 0;
    font-family: Terminus;
    font-size: var(--fontSize);
    font-style: normal;
    font-weight: 0;
    letter-spacing: 1px;
    font-feature-settings: "liga", "tnum", "case", "calt", "zero", "ss01", "locl";
    line-height: 1.54;
    background-color: #fff;
    background-color: var(--color-bg-med);
    color: #222;
    color: var(--color-highlight);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%
}


.logo {
    text-decoration: none;
    font-size:1.3rem;
    font-family: Terminus;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.logo-cursor {
    display: inline-block;
    width: 5px;
    height: 1rem;
    background: var(--color-base);
    margin-left: 7px;
    border-radius: 1px;
    -webkit-animation: cursor 1s infinite;
    animation: cursor 1s infinite
}


@-webkit-keyframes cursor {
    0% {
        opacity: 0
    }
    50% {
        opacity: .8
    }
    to {
        opacity: 0
    }
}

@keyframes cursor {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}



.menu-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0
}

@media (max-width:683px) {
    .menu-inner--desktop {
        display: none
    }
}




.menu-inner li {
    text-align: left;
    flex: 0 0 auto
}

.menu-inner li:not(:first-of-type) {
    margin-left: 20px
}


@media (max-width:683px) {
    body {
        font-size: 1rem
    }
}

.footer {
    position: fixed;
    bottom: 0;
    padding-top: 10px;
    border-top: #96c3f1 1px solid;
    padding-bottom: 10px;
    background: #1A1616;
    color: var(--color-highlight);
    width: 100%;
}

.command-line-prompt {
    border-right: 1px solid #999;
    display: block;
    float: left;
    font-size: 100%;
    letter-spacing: -1px;
    margin-right: 1em;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.command-line-prompt>span:before {
    color: #999;
    content: " ";
    display: block;
    padding-right: .8em
}

.command-line-prompt>span[data-user]:before {
    content: "[" attr(data-user) "@" attr(data-host) "] $"
}

.command-line-prompt>span[data-user=root]:before {
    content: "[" attr(data-user) "@" attr(data-host) "] #"
}

.command-line-prompt>span[data-prompt]:before {
    content: attr(data-prompt)
}

.header-right {
    display: flex;
    flex-direction: row;
    align-items: center
}

@media (max-width:683px) {
    .header-right {
        flex-direction: row-reverse
    }
}

.header-inner {
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    max-width: 100%

}

.header-inner,
.theme-toggle {
    display: flex;
    align-items: center
}

.header-inner,
.sidebar-toggle-left {
    display: flex;
    align-items: center
}

.button {
    border: none;
    background: var(--color-base);
    color: var(--color-bg-light);
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2rem;
    font-family: Terminus;
    margin: 10px 0px;
    cursor: pointer;
}

.button:hover {
    background: var(--color-alt);
}

.button-container {

}

.content-item-container {

}

.content-item-hz {
    width: 140px;
    padding-top: 10px;
}


h1 {
    font-weight: normal;
    font-size: 2.6rem;
}

.hidden {
    display: none;
}

hr {
    display: block;
    border: 0;
    border-top: 1px solid var(--color-alt);
    width: 100%;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    box-shadow: var(--color-alt) 0px 0px 8px;
}


table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    margin: 40px 0;
    border-radius: 5px
}

table,
td,
th {
    border: 1px solid;
    padding: 10px
}

th {
    background: #eaeaea;
    background: var(--color-bg-light)
}

ol,
ul {
    margin-left: 40px;
    padding: 0
}

@media (max-width:683px) {
    ol,
    ul {
        margin-left: 20px
    }
}

ol ol {
    list-style-type: lower-alpha
}


.side-paragraph {
    text-align: left;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Terminus;
    font-size: 1.0rem;
    border-bottom: 1px #4a4b50 dotted;
}

/* SIDE */
.side {
    background: #1a1616;
    font-family: Terminus;
    font-size: 1.0rem;
    flex: 0 0 300px;
}
.side > table {
    width: 100%;
}

@media (max-width:683px) {
    .main {
        margin-top: 25px;
    }
    .flex-row {
        flex-direction: column;
    }
}

.side-border-left {
    border-left: #96c3f1 1px solid
}

.side-border-right {
    border-right: #96c3f1 1px solid
}


.side-large {
    background-color: #212121;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.2em;
    color: #96c3f1;
    border-bottom: 1px #96c3f1 solid;
}

.side-paragraph {
    text-align: left;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Terminus;
    font-size: 1.0rem;
    border-bottom: 1px #4a4b50 dotted;
}

.side-medium {
    font-family: Terminus;
    font-size: 1.5rem;
}

.flex-row {
    display: flex;
}


a {
    color: inherit
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%
}

.justified {
    text-align: justify;
}

.l-box {
    padding: 1em;
}
