html, body {
    background-color: black;
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: "Audiowide", serif;
}

.container {
    position: relative;
    display: flex;
    flex:1;
    flex-direction: row;
    height: 100%;
}

.navbar {
    display: flex;
    flex-flow: column;
    /* flex-basis: 100%; */
    width: 20%;
    height: 100%;
    min-height: 100%;
}

.navbar * {
    display: flex;
}

.navItem {
    display: flex;
    flex-direction: column;
}

.navItem > *{
    display: list-item;
    color: white;
    font-family: "Audiowide", serif
}

.navItem > ::marker {
    color: rgb(255, 136, 0);
    font-size: xx-large;
}

.navItem * a {
    color: white;
    font-size: large;    
    text-decoration: none;
}

.help {
    display: flex;
    height: auto;
    margin-left: 10%;
}

.help > button {
    display:flex;
    aspect-ratio: 1;
    background-color: rgb(2, 2, 59); 
    color: white;
    font-size: larger;
    border-radius: 51%;
    height: auto;
    border: none;
}



.content {
    position: relative;
    min-height: 100%; 
    min-width: 80%;
}

.audiowide-regular {
    font-family: "Audiowide", serif;
    font-weight: 400;
    font-style: normal;
  }
  