@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;
    width: 100vw;
    height: 100vh;
}

div, nav {
    max-width: 1080px;
    margin: 0 auto;
    padding-inline: 1.25rem;
}

.navbar {
    color: rgb(182, 255, 220);
    font-size: x-large;
    
    /* 
    // 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: 3.25rem;
    .navbar-item {
        word-spacing: 0px;
    }
}

.image-big {
    width: 860px;
}
.image-medium {
    width: 680px;
}
.image-small {
    width: 400px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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: 1rem;
}