﻿:root {
    --foreground-1-00: rgb(239, 239, 239);
    --background-1-00: rgb(15, 15, 15);
    --foreground-2-00: rgb(239, 239, 239);
    --background-2-00: rgb(15, 15, 63);
    --background-image-00: url(/images/background_00.gif);

    --foreground-1-06: rgb(239, 239, 239);
    --background-1-06: rgb(63, 63, 63);
    --foreground-2-06: rgb(239, 239, 239);
    --background-2-06: rgb(159, 159, 63);    
    --background-image-06: url(/images/background_06.gif);

    --foreground-1-12: rgb(16, 16, 16);
    --background-1-12: rgb(239, 239, 239);
    --foreground-2-12: rgb(239, 239, 239);
    --background-2-12: rgb(127, 127, 239);    
    --background-image-12: url(/images/background_12.gif);

    --foreground-1-18: rgb(239, 239, 239);
    --background-1-18: rgb(63, 63, 63);
    --foreground-2-18: rgb(239, 239, 239);
    --background-2-18: rgb(16, 16, 127);    
    --background-image-18: url(/images/background_18.gif);

    --foreground-1: var(--foreground-1-00);
    --background-1: var(--background-1-00);
    --foreground-2: var(--foreground-2-00);
    --background-2: var(--background-2-00);    
    --background-image: var(--background-image-00);

    --container-width: 1080px;
}

html {
    margin: 0px;
    height: 100%;
    width: 100%;
    background-color: var(--background-1);
}

body {
    margin: 0px;
    width: 100%;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.niets-background {
    background-image: var(--background-image);
    background-color: var(--background-1);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(12px);
    -webkit-filter: blur(12px);
    transform: scale(1.1);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1000;
}

.niets-main-container {
    max-width: var(--container-width);
    margin: auto;
}

.niets-nav-container {
    max-width: var(--container-width);
    margin: auto;
}

.niets-nav-bar {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
}

.niets-nav-bar > *:not(:last-child) {
    margin-right: 10px;
}

.niets-nav-split {
    margin: auto;
}

.niets-paper {
    display: flex;
    border-radius: 10px;
    box-shadow: 2px 2px rgba(0, 0, 0, 0.5);
    color: var(--foreground-1);
    background: color(from var(--background-1) srgb r g b / 0.5);
    padding: 10px;
}

.niets-button {
    border-radius: 10px;
    box-shadow: 2px 2px rgba(0, 0, 0, 0.5);
    display: block;
    color: var(--foreground-2);
    background-color: var(--background-2);
    padding: 5px;
    border-width: 2px;
    border-style: solid;
    border-color: var(--background-2);
    cursor: pointer;
    text-decoration: none;
}

.niets-button:hover {
    border-color: var(--foreground-2);
}

.niets-button:active {
    border-color: var(--foreground-2);
}

.niets-round {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.niets-button > * {
    display: table-cell;
    vertical-align: middle;
} 

.niets-button > *:not(:last-child) {
    padding-right: 5px;
}

