@font-face {
    font-family: hack;
    src: url(./fonts/Hack/Hack-Regular.ttf);
}

body {
    background-color: black;
    color: white;
    font-size: large;
    font-family: monospace, 'Courier New', Courier, hack;
    font-size: larger;
    word-wrap: normal;
}

div {
    max-width: 1080px;
    margin: 0 auto;
    padding-inline: 20px;
}

.navbar {
    color: rgb(182, 255, 220);
    
    /* 
    // Ok so this warrants some explanation. Basically, I want to be able to
    // change all navbar spacing via the stylesheet. I can't use padding because
    // then the navbar itself is a bit off and where links are clickable becomes
    // wonky, so I'm using word spacing instead. And to make sure that an
    // individual navbar item doesn't have huge word spacing, I override it for
    // every navbar item to be 0px.
    */
    word-spacing: 52px;
    .navbar-item {
        word-spacing: 0px;
    }
}

a:link {
    color: rgb(0, 231, 39);
}
a:visited {
    color: green;
}

.marginless-bottom {
    margin-bottom: 0px;
}

.note {
    font-size: medium;
    color: lightgray;
}

li {
    padding-bottom: 16px;
}