body {
    background-color: #181c1d;
    color: #d8b252;
    font-family: monospace;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.header {
    text-align: center;
    position: relative;
    margin: 0 auto 10px auto;
}

.headerMain {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px
}

#menuBar {
    display: flex;
    justify-content: center;
    list-style: none;
    text-decoration: none;
    padding: 0 10px 0 10px;
    margin: 0;
}

/* Remove underline + make text inherit normal color */
#menuBar a {
    text-decoration: none;
    color: inherit;
    display: block;          /* makes the entire block clickable */
}

/* Style the ASCII boxes */
#menuBar pre {
    margin: 0;
    padding: 0;
    font-family: monospace;  /* ensures alignment */
    background-color: inherit;
    color: inherit;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover effect for entire button */
#menuBar a:hover pre {
    background-color: inherit;
    color: #ffffcb;
}

/* active page should appear already selected */
#activePage {
    color: #ffffcb;
}

#divider {
    margin: 0;
    padding: 0 0px;
    color: #d8b252;        /* your gold color */
    font-family: monospace;
    line-height: 1;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#headerSeperator {
    width: 70%;           /* always 70% of viewport width */
    margin: 1rem auto;     /* center on the page (optional) */
    font-family: monospace;
    white-space: nowrap;   /* keep it on one line */
    overflow: hidden;      /* cut off extra characters */
    display: block;
    outline: 1px red;
}

#headerSeperator::before {
    content: "*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*";
}

.mobileHeader {
    display: none;
}

footer{
    text-align: center;
    font-family: monospace;
    color: #d8b252;
}

/*only applies if screen larger than 768 */
@media (max-width: 768px) {
    .headerMain {
        display: none;
    }
    
    .mobileHeader {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #mobileMenubar {
        list-style: none;
        text-decoration: none;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 0 10px 0 10px;
        margin: 0;
        transition: max-height 0.25s ease, opacity 0.25s ease;
    }

    #mobileMenubar.show{
        display: flex;
    }

    #mobileMenubar pre {        /*<pre> blocks take full width of screen, so even though flex box is centered, text appears left alligned */
        display: inline-block;
        margin: 0;
        padding: 0;
        white-space: pre;
    }

    #mobileMenubar a {
        text-decoration: none;
        color: inherit;
        display: inline-block;          /* makes the entire block clickable */
    }

    #mobileMenubar pre {
        margin: 0;
        padding: 0;
        font-family: monospace; 
        background-color: inherit;
        color: inherit;
        transition: background-color 0.2s ease, color 0.2s ease;
    }
    
    #hamburgerToggle {
        all: unset;
        margin: 0;
        padding: 0;
        font-family: monospace;
        background-color: inherit;
        color: inherit;
    }

    #hamburgerToggle .opened {
        display: none;
    }

    #hamburgerToggle.active .closed {
        display: none;
    }

    #hamburgerToggle.active .opened {
        display: block;
    }

    .header::after {
        display: none;
    }
}

.contentContainer {
    width: 70%;
    margin: 0 auto;
    color: inherit;
    font-family: inherit;
}

.columnDivider {
    display: none;
}

@media (min-width: 768px) {
    .contentContainer {
        display: flex;
        justify-content: left;
    }

    .leftSubContainer {
        width: 25%;
        margin: 1rem 1rem 1rem 1rem;
    }

    .columnDivider {
        display: flex;
        width: 5%;
        justify-content: center;
        align-items: stretch;
    }

    #asciiDivider {
        margin: 0;
        font-family: monospace;
        color: inherit;
        line-height: 1;
        white-space: pre;
    }

    .rightSubContainer {
        width: 70%;
        margin: 1rem 1rem 1rem 1rem;
    }
}

@media(max-width: 768px) {
    .leftSubContainer {
        margin-bottom: 5rem;
    }
}

img {
    width: 100%;
}

.aboutContentContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    margin: auto;
}
