body {
    display: grid;
    font-family: Inter var, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    background-color: rgb(17, 24, 39);
    color: white;
    margin-top: 60px;
    grid-template:
        "nav nav nav"
        "side main main"
        "side main main";
}

h1 {
    font-size: 24px;
}

sub {
    font-size: 14px;
}

/* NAVBAR */
.container {
    display: inline;
    justify-self: center;
    grid-area: nav;
    background-color: rgb(17, 24, 39);
    border: 1px dashed red;
    border-radius: 10px 30px;
    height: 60px;
    width: 95%;
    min-width: 340px;
    font-weight: bold;
    font-size: 18px;
}

.sticky-nav {
    display: flex;
    position: fixed;
    top: 0;
}

.push-left {
    align-self: center;
    justify-content: left;
    padding: 10px;
}


.nav-item {
    display: inline-block;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    color: #494269;
}

/* NAVBAR */

.side-display {
    position: fixed;
    width: 200px;
    padding: 0 10px 0 0;
    grid-area: side;
}

.main-content {
    margin-left: 200px;
    padding: 0 0 0 10px;
    grid-area: main;
}