@font-face {
    font-family: 'Hack';
    src: url('/common/fonts/hack-regular.woff2') format('woff2'), url('/common/fonts/hack-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Hack';
    src: url('/common/fonts/hack-bold.woff2') format('woff2'), url('/common/fonts/hack-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Hack';
    src: url('/common/fonts/hack-italic.woff2') format('woff2'), url('/common/fonts/hack-italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Hack';
    src: url('/common/fonts/hack-bolditalic.woff2') format('woff2'), url('/common/fonts/hack-bolditalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}

:root {
    color-scheme: light only;
    
    font-family: Hack, monospace;
    color: #32cd32 !important;
    background-color: #1f1f1f !important;
}

html {
    height: 100%;
    background-color: #1f1f1f !important;
    overflow: auto;
}

body {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: element;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: contain;
    /* Chrome, Edge, Opera and Firefox */
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
}

h1 {font-size: 32px;}
h2 {font-size: 28px;}
h3 {font-size: 24px;}
h4 {font-size: 20px;}
h5 {font-size: 16px;}
h6 {font-size: 12px;}

a {
    color: #85ff85 !important;
    text-decoration: none;
}

a:hover {
    color: #85ff85 !important;
    text-decoration: underline;
}

a:visited {
    color: #85ff85 !important;
    text-decoration: none;
}




center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

pre {
    color: #32cd32 !important;
    display: flow-root;
    font-family: Hack, monospace;
    line-height: 1.22em;
    font-size: 1.22em;
    margin: 0;
    padding: 0;
}

label {
    color: #32cd32 !important;
    display: flow-root;
    font-family: Hack, monospace;
    line-height: 1.22em;
    font-size: 16px;
    margin: 0;
    padding: 0;

    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Chrome, Edge, Opera and Firefox */
}

a:hover {
    color: whitesmoke !important;
}

a {
    text-decoration: none;
}

input:not([type="button"]) {
    border: none;
    outline-style: none;
    border-bottom: dashed #32cd32 2px;
    background-color: #1f1f1f;
    font-family: Hack, monospace;
    color: #32cd32;
    font-size: 18px;
    resize: none;
}

input:not([type="button"]):disabled {
    border-bottom: dashed lightgray 2px;
    color: lightgray;
}

input:not([type="button"]):focus {
    border-bottom: dashed #85ff85 2px;
    color: #85ff85;
}

button,
input[type="button"] {
    outline: none;
    border-color: #32cd32;
    background-color: #1f1f1f;
    color: #32cd32;
    font-family: Hack, monospace;
    cursor: pointer;
}

button:disabled,
input[type="button"]:disabled {
    border-color: lightgray;
    color: lightgray;
    cursor: default;
}

button:focus-visible,
input[type="button"]:focus-visible {
    border-color: #85ff85;
    color: #85ff85;
}

button:enabled:hover,
input[type="button"]:enabled:hover {
    border-color: #85ff85;
    color: #85ff85;
}

button:enabled:active,
input[type="button"]:enabled:active {
    border-color: #32cd32;
    color: #32cd32;
}

input[type="checkbox"] {
    color: rgb(50, 205, 50);
    accent-color: rgb(230, 26, 230);
    filter: invert(88%);
}

input[type="checkbox"]:enabled {
    cursor: pointer;
}

input[type="checkbox"]:disabled {
    cursor: default;
}

input[type="checkbox"]:focus-visible {
    outline-style: dashed;
    outline-width: 2px;
    outline-offset: -1px;
}

input[type="radio"] {
    color: rgb(50, 205, 50);
    accent-color: rgb(230, 26, 230);
    filter: invert(88%);
}

input[type="radio"]:enabled {
    cursor: pointer;
}
input[type="radio"]:disabled {
    cursor: default;
}

input[type="radio"]:focus-visible {
    outline-style: dashed;
    outline-width: 2px;
    outline-offset: -1px;
}

input[type="range"] {
    color: rgb(50, 205, 50);
    accent-color: rgb(230, 26, 230);
    filter: invert(88%);
}

input[type="range"]:enabled {
    cursor: pointer;
}

input[type="range"]:disabled {
    cursor: default;
}

input[type="range"]:focus-visible {
    outline-style: dashed;
    outline-width: 2px;
    outline-offset: -1px;
}