:root{
    --bg: #0f0f0f;
    --text: #f8f8f8;
}
body{
    font-family: monospace;
    background: var(--bg);
    margin:40px auto;
    max-width:800px;
    line-height:1.6;
    font-size:18px;
    color: var(--text);
    padding:0 10px
}

h2,h4{line-height:1.2}
a {
    color: var(--text);
    text-decoration: none;
}
ul {
    list-style-type: "> ";
}
nav {
    display: flex;
    justify-content: flex-end;
}
nav a {
    padding-left: 10px;
}
