/* Theme */
html {
    --theme_accent: rgb(165, 105, 255);/* --theme_accent: rgb(77, 160, 255); */
    --theme_background: rgb(4,4,8);
    --theme_group_background: rgb(6,6,10);
    --theme_element_background: rgb(14,14,18);
    --theme_tab_gradient_1: rgb(28,28,33);
    --theme_tab_gradient_2: rgb(10,10,15);
    --theme_tab_gradient_3: rgb(20,20,28);
    --theme_text_header: rgb(199, 199, 247);
    --theme_text_paragraph: rgb(164, 164, 201);
    --theme_text_primary: rgb(240,240,240);
    --theme_text_secondary: rgb(145,145,145);
    --theme_text_light: rgb(215,215,215);
    --theme_text_error: rgb(195,55,55);
    --theme_border_1: rgb(20,20,25);
    --theme_border_2: rgb(50,50,60);
    --theme_border_3: rgb(65,65,75);
}

body {
    margin: 0px;
    background-color: var(--theme_background);
    overflow-y: hidden;
    font-family: monospace;
}

.container {
    position: absolute;
    left: 50%;
    top: 40%;
    min-width: 100vw;
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--theme_text_primary);
}

.container ul
{
    padding: 0;
}

.container a[href]
{
    color: var(--theme_text_primary);
    line-height: 10px;
    text-align: center;
    user-select: none;
    text-decoration: none;
}

.container a[href]:hover
{
    color: var(--theme_accent);
    text-shadow: 0 0 5px var(--theme_accent);
    text-decoration: underline;
    animation-name: glow_anim;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.title, .title:link, .title:active, .title:visited
{
    color: var(--theme_accent) !important;
    text-shadow: 0 0 8px var(--theme_accent) !important;
    line-height: 5px;
    text-decoration: none;
    user-select: none;
}

