:root
{
    --footer: rgba(0, 0, 0, 0.4);
    --content-text: rgb(150, 150, 150);
    --textareas-and-inputs: rgb(200, 200, 200);
    --textareas-and-inputs-hover: rgba(250, 250, 250, 0.5);
    --menu-links: rgb(250, 250, 250);
    --menu-links-hover: rgb(255, 255, 255, .7);
    --transparent-black: rgba(0, 0, 0, 0.5);
    --borders: black;
    --background-color: rgb(25, 25, 25);
    --zoomed-background-color: rgb(25, 25, 25);
    --title-text: rgb(150, 150, 150);
    --ovelay-color: rgba(10, 10, 10, .95)
}

#overlay
{
    background-color: var(--ovelay-color);
    position:fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: -4;
}

body
{
    background-color: var(--background-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow-x: hidden;
    font-family: walkway;
    font-size: 18px;
}

footer
{
    z-index: 98;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 2.5em;
    width: 100vw;
    display: flex;
    flex-direction : row-reverse;
    background-color: var(--footer);
    padding: .25em;
    backdrop-filter: blur(10px);
}

footer img
{
    height: 2em;
    margin-left: .3em;
}

@font-face {
    font-family: walkway;
    src: url('../fonts/SansSerifFLF.otf');
}

@font-face {
    font-family: geosans;
    src: url('../fonts/GeosansLight.ttf ');
}

*
{
    box-sizing: border-box;
}

h1
{
    font-family: walkway;
    margin: 0;
    margin-top: -.4em;
    padding: 0;
}

#content
{
    display: grid;
    margin-top: 5em;
    column-gap: 1em;
    margin-left: .2vw;
    margin-right: .2vw;
    justify-items: center;
    color: var(--content_text);
}

.pageTitle
{
    grid-column: 1 / 2;
    display: grid;
    margin: .5em;
    text-align: center;
    width: 8em;
    padding: .2em;
}

.pageTitle::after
{
    content: '';
    position: absolute;
    right: 0;
    top: 3.6em;
    height: .2em;
    width: calc(50vw - 4em);
    background-color: var(--title-text);
}

.pageTitle::before
{
    content: '';
    position: absolute;
    left: 0;
    top: 3.6em;
    height: .2em;
    width: calc(50vw - 4em);
    background-color: var(--title-text);
}

#footer
{
    padding-right: 2em;
}
