/* MVP.css v1.12 - https://github.com/andybrewer/mvp */

:root {
    /*--active-brightness: 0.85;*/
    /*--border-radius: 5px;*/
    /*--box-shadow: 2px 2px 10px;*/
    --color-accent: #118bee15;
    --color-bg: #524d4d;
    --color-bg-secondary: #e9e9e9;
    --color-link: #118bee;
    --color-secondary: #920de9;
    --color-secondary-accent: #920de90b;
    --color-shadow: #f4f4f4;
    --color-table: #118bee;
    /*--color-text: #e8dbdb;*/
    --color-text: #e8dbdb;
    --color-text-secondary: #999;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --hover-brightness: 1.2;
    /*--justify-important: center;*/
    --justify-normal: left;
    --line-height: 1.5;
    --width-card: 285px;
    --width-card-medium: 460px;
    --width-card-wide: 800px;
    --width-content: 1080px;
}

@media (prefers-color-scheme: dark) {
    :root[color-mode="user"] {
        --color-accent: #0097fc4f;
        --color-bg: #333;
        /*--color-bg: #FFF;*/
        --color-bg-secondary: #555;
        --color-link: #0097fc;
        --color-secondary: #e20de9;
        --color-secondary-accent: #e20de94f;
        --color-shadow: #bbbbbb20;
        --color-table: #0097fc;
        --color-text: #f7f7f7;
        --color-text-secondary: #aaa;
    }
}

/* Layout */
article aside {
    background: var(--color-secondary-accent);
    border-left: 4px solid var(--color-secondary);
    padding: 0.01rem 0.8rem;
}

.navlinks{
    color: #FFF;
    text-decoration: none;
}

.navlinks:hover{
    text-decoration: none;
}

.highlight {
    color-text: #0097fc;
    background: #e20de9;
}

.view{
    display: flex;
    flex-direction: column;
    height: 90%;
    flex-grow: 1;
}

.headerbar{
    background: #282727;
    display: flex;
    flex-direction: column;
    flex-grow: 0;
}

.sitename{
    font-size: x-large;
    padding-left: 5px;
    padding-bottom: 5px;
    flex-grow: 0;
    font-weight: bold;
}

.navbar {

    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: baseline;
    gap: 16px;
    flex-grow: 0;
}
.form {
    display: flex;
    flex-direction: column;
    align-self: center;
    align-items: center;
    gap: 10px;
    /*padding-right: 100px;*/
}

.navitem{
    /*text-decoration: underline red;*/
}

.vertical_spacer{
    display: flex;
    height: 75px;
    flex-grow: 1;
    /*border: solid red;*/
}

.maincard {
    background: #282727;
    align-self: center;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    /*flex-basis: 1000px;*/
    flex-grow: 5;
    border: hidden white;
    border-radius: 15px;
    width: 600px;
    height: 600px;
    /*display: flex;*/
}

body {
    background: var(--color-bg);
    /*background: #1d2534;*/
    color: var(--color-text);
    font-family: var(--font-family);
    line-height: var(--line-height);
    /*display: flex;*/
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.art {
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 10px;
}
.metadata {
    display: flex;
    flex-direction: row;
    align-self: center;
    max-width: 50%;
    margin-top: 30px;
    /*padding-right: 100px;*/
}
.ai {
    display: flex;
    flex-direction: column;
    align-self: center;
}

.foot {
    justify-self: end;
    display: flex;
    justify-content: start;
    align-content: start;
    background: #282727;
    /*height: max-content;*/
    /*flex-grow: 5;*/
    flex-direction: column;
    /*height: 100%;*/
    min-height: 100%;
    bottom: 0;
    /*left: 0;*/
    margin-top: fill;
    /*position: fixed;*/
}
.para-link {
    color: white;
}