body {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #eceff4;
    background-color: #2e3440;
    margin: 0px;
    padding: 0;
}


a:link, a:visited {
    color: #88c0d0;
}

a:hover {
    color: #ebcb8b;
}

h1 {
    font-size: 28px;
}

h2 {
    background-color: #3b4252;
    padding-left: 10px;
}

h3 {
    margin-left: 10px;
}

p {
    margin-left: 20px;
    margin-right: 20px;
}

code {
    background-color: #3b4252;
    padding-left: 4px;
    padding-right: 4px;
}

.text-normal {
    font-size: 14px;
    color: #eceff4;
    line-height: 2;
}

.text-image {
    text-align: center;
}

.header {
    border-bottom-style: solid;
    border-bottom-width: 1em;
    border-bottom-color: #4c566a;
    /* border: 1px solid #eceff4; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.middle {
    /* border: 1px solid #eceff4; */
    display: flex;
    align-items: stretch;
    padding: 20px 0px;
    margin-bottom: 40px;
    gap: 40px;    
}

.navbar {
    /* border: 1px solid #eceff4; */
    flex: 1 1 100px; /* grow shrink basis */
    min-width: 50px;
    /* min-height: 700px; */
    /* align-self: flex-start; */
}

.navlist {
    position: sticky;
    top: 20px;
    padding-right: 20px;
}

.navlist ul {
    list-style-type: none;
    text-align: right;
    line-height: 2.5;
}

.content {
    /* border: 1px solid #eceff4; */
    flex: 6 0 300px;
    max-width: 75ch; /* ~75 characters per line */
    line-height: 1.6;
}


.sidebar {
    flex: 1 1 100px;
    min-width: 50px;
}

.sidelist {
    position: sticky;
    top: 30%;
    line-height: 2.5;
}

.sidelist ul {
    list-style-type: none;
    text-align: left;
}

.sidebar a:link, 
.sidebar a:visited {
    color: #d8dee9;
    text-decoration: none;
}

.sidebar a:hover {
    color: #a3be8c;
    text-decoration: none;
}

.footer {
    /* border: 1px solid #eceff4; */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-style: solid;
    border-top-width: 1em;
    border-top-color: #4c566a;
}

.footer-left {
    flex: 2;
    /* width: 200px; */
    text-align: left;
    padding-left: 40px;
}

.footer-middle {
    flex: 4;
}

.footer-right {
    flex: 2;
    /* width: 200px; */
    text-align: right;
    padding-right: 30px;
}

.text-small {
    font-size: 12px;
    color: #4c566a;
    text-align: center;
}

/* DEBUGS */

/* .middle { border: 2px solid red; }
.navbar { border: 2px solid blue; }
.navlist { border: 2px solid green; }
.navlist ul { border: 2px solid yellow; }
.sidelist  { border: 2px solid yellow; } */