@font-face {
    font-family: "Imbue";
    src: url("../fonts/Imbue-VariableFont_opsz,wght.ttf") format("opentype");
}

body {
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: ms ui gothic;
    font-size: 16px;
    background-image: url("../images/backgrounds/starry_bg.png");
}

h1 {
    font-family: "Imbue", ms ui gothic;
    font-size: 80px;
}

a {
    color: #4d94ff;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

div.container {
    display: grid;
    grid-template: 200px auto 50px / 200px auto 250px;
}

header {
    grid-area: 1 / 1 / span 1 / span 4;
}

footer {
    grid-area: 3 / 1 / span 1 / span 4;
    justify-self: center;
}

main {
    display: grid;
    grid-template: repeat(2, auto) / 50% 50%;
    grid-auto-flow: row;
}

main.minigames {
    display: grid;
    grid-template: repeat(2, auto) / 25% 75%;
    grid-auto-flow: row;
}

.window {
    border: 1px solid white;
    margin: 1px;
    background-color: #0d0d0d;
}

.window > * {
    margin-left: 8px;
    margin-right: 8px;
}

.window_top {
    background-color: rgb(73, 73, 73);
    border-bottom: 1px solid white;
    padding: 4px;
    margin: 0px;
}

.double {
    grid-column: 1 / 3;
}

ul.side_nav {
    margin: 0px;
}

.pico8 {
    width: 750px;
    height: 680px;
    margin-top: 8px;
}