@font-face {
    font-family: 'GNU Unifont';
    src: url('./fonts/unifont.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: rgb(6, 25, 66);
    background-image: url("./images/bg.png");
    background-attachment: fixed;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 1080px;
    margin: auto;
    width: 75%;
    padding: 10px;
    font-family: sans-serif;
}

a:link {
    color: rgb(255, 166, 0);
}
a:visited {
    color: rgb(255, 81, 0);
}
a:hover {
    color: rgb(0, 255, 28);
}
a:active {
    color: rgb(255, 255, 255);
}

h1 {
    color: rgb(0, 255, 0);
}
h2 {
    color: rgb(120, 255, 120);
}
p {
    color: rgb(50, 255, 16);
}
li {
    color: rgb(0, 166, 0);
}

canvas {
    margin-left: -25%;
    width: 141%;
    padding: 0px;
    image-rendering: optimizeSpeed; 
    image-rendering: -moz-crisp-edges; 
    image-rendering: -webkit-optimize-contrast; 
    image-rendering: -o-crisp-edges; 
    image-rendering: optimize-contrast; 
    -ms-interpolation-mode: nearest-neighbor;
}

table {
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

tr:nth-child(odd) {
    background-color: #eeeeee;
}

.bgimg {
    border-image: url(./images/divBG.png) 40 120 4 4 fill / 40px 120px 4px 4px;
    padding: 40px 120px 4px 4px;
    image-rendering: pixelated;
}

.sortable th {
    cursor: pointer;
}
.sortable th.no-sort {
    pointer-events: none;
}
.sortable th::after,
.sortable th::before {
    transition: color 0.2s ease-in-out;
    font-size: 1.2em;
    color: transparent;
}
.sortable th::after {
    margin-left: 3px;
    content: '\025B8';
}
.sortable th:hover::after {
    color: inherit;
}
.sortable th.dir-d::after {
    color: inherit;
    content: '\025BE';
}
.sortable th.dir-u::after {
    color: inherit;
    content: '\025B4';
}
