:root {
    /* Twilight 5 Palette: https://lospec.com/palette-list/twilight-5 */
    --primary-text-colour: 251,187,173;
    --secondary-text-colour: 238,134,149;
    --link-text-colour:74,122,150;
    --primary-background-colour:41,40,49;
    --secondary-background-colour: 51,63,88;
}

@font-face {
    font-family: Windlass;
    src: url("/fonts/Windlass\ Regular.otf") format("opentype");
}

body {
    margin: 0;
    font-family: 'Lucida Console';
    image-rendering: pixelated;
    line-height: 1.5;
    color: rgb(var(--primary-text-colour));
    background-image: url('/img/sky.png');
    background-size: 512px 512px;
    background-attachment: fixed;
}

table {
    margin-top: 10px;
}

#sidetd{
    width: 225px;
    vertical-align: top;
    padding-right: 5px;
}

#maintd{
    width: 675px;
    vertical-align: top;
    padding-left: 5px;
}

a {
    color: rgb(var(--link-text-colour));
}

strong {
    color: rgb(var(--secondary-text-colour));
}

h1 {
    font-size: 50px;
    font-family: "windlass";
    margin: auto;
}

h2 {
    border-bottom: 2px dashed;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

section {
    padding: 8px;
    background-color: rgb(var(--primary-background-colour));
}

s {
    color: inherit;
}

#background {
    position: fixed;
    top:0;
    left:0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-image: url('/img/brambles.png');
    background-size: 512px 512px;
}

#container {
    height: fit-content;
    width: 900px;
    margin: 0 auto;
}

#header {
    background-color: rgb(var(--primary-background-colour));
    background: linear-gradient(180deg,rgba(51, 63, 88, 1) 25%, rgba(41, 40, 49, 1) 75%);
    text-align: center;
    margin: auto;
    width: 900px;
    height: fit-content;
}

aside {
    padding: 8px;
    background-color: rgb(var(--primary-background-colour));
    text-align: center;
}

aside ul {
    list-style-type: none;
    padding: 0px;
}

aside li:hover {
    cursor: pointer;
    color: rgb(var(--primary-background-colour));
    list-style-type: none;
    background-color: rgb(var(--primary-text-colour));
    transition: all 0.3s;
}

aside li.selected {
    background-color: rgba(var(--link-text-colour));
}

#home-panels {
    display: grid; 
    grid-template-columns: 33% 33% 33%;
}

#home-panels div {
    margin: 10px;
}

.marquee-item {
    margin: 0px 8px;
    width: 64px;
}

.beaten-hardcore {
    border: 3px silver solid
}

.mastered {
    border: 3px gold solid
}

.hidden {
    display: none;
}
