/* General Styling */
:root {
    --bg: rgb(60, 56, 65);
    --bgsize: 50%;
    --buttonvposition: 10%;
    --color: #bfa626;
    --black: #000000ff;
    --lightaqua: #349c9e;
    --darkaqua: #456e73;
    --verydarkaqua: #2f403e;
    --aquagradient: linear-gradient(to bottom, #456e73, #2f403e);
    --mutedtext: #bc8500;
    --logoorange: #d29400;
    --darkbronze: #6d623c;
    --lightbronze: #a69342ff;
    --textcolor: #a69342ff;
    --transparent: #00000000;
    --font: 'Dosis';
}

@font-face {
    font-family: 'Dosis';
    font-optical-sizing: auto;
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
    src: url('../font/Dosis/Dosis-VariableFont_wght.ttf') format('woff2');
}

@font-face {
    font-family: 'Crushed';
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../font/Crushed/Crushed-Regular.ttf') format('woff2');
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

body {
    background-color: #000;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Main Content */
.primary-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    flex: 1;
}

#center-line {
    display: block;
    position: absolute;
    left: 50%;
    height: 100%;
    width: 1px;
    background-color: red;
}

.header {
    height: 285px;
}

.header-img {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 285px;
    width: 100%;
    background-image: url('../img/header_img.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.header-logo {
    position: relative;
    bottom: -17%;
    left: 70%;
    max-width: 8%;
    height: auto;
}

.nav {
    height: 50px;
}

.main-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

#master-background {
    position: absolute;
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    background-color: #000;
    z-index: -10;
}

#main {
    /* background: rgb(0, 0, 0); */
    /* display: flex; */
    flex: 1;
}

#footer {
    flex-shrink: 0;
    margin-top: auto;
    padding: 1em;
    font-size: 1em;
    box-sizing: border-box;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #a69342;
    /* background-color: #111; */
    text-align: left;
}

/* Media Queries
--------------------------------------------- */

@media all and (max-width: 768px) {
    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    #header-img {
        display: block;
        width: 100%;
        height: 20%;
    }
}

#templates {
    display: none;
    height: 0px;
}