
body {
    font-family: -apple-system, system-ui, sans-serif;
    margin: 0px;
    color: #303030;
}

div.site-wrapper {
    display: flex;
    justify-content: center;
    
    margin: 0;
    padding: 0px;

}


.nav-header {
    display: grid;
    grid-template-columns: auto 1fr 100px;
    align-items: center;
    width: 90%;
    margin: auto;

    margin-top: 20px;
}

.nav-header > img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.nav-header > div >  h2 {
    font-size: 45px;
    margin: 0px;
}

.nav-header * {
    color: inherit;
    font-size: 20px;
    text-align: center;
}


.nav-aside {
    margin: 100px 40px auto 0;
    width: 180px;
    flex-shrink: 0;

    display: grid;
    grid-template-columns: 1fr 10px 1fr;
    grid-template-rows: 20px, 5px, 10px, 20px;
    
    column-gap: 5px;
}

.nav-aside > * {
    margin: 5px 0;
    color: inherit
}

.nav-aside > img,
.nav-aside > .na-name{
    grid-column: 1 / 4;
    justify-self: center;
}

.na-name {
    color: inherit;
    font-weight: 600;
}

.nav-aside > img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.nav-aside > .na-left {
    justify-self: end;
}

.nav-aside > .na-center {
    justify-self: center;
}

.nav-aside > .na-right {
    justify-self: start;
}

.main-page-title {
    font-size: 45px;
    margin: 0px;
    margin-bottom: 20px;
}


main {
    max-width: 700px;
    width: 85%;

    margin-top: 40px;
}


.post-header {
    margin-bottom: 20px;
}

.post-header  * {
    margin: 0px;
    text-decoration: none;
    color: inherit;
}

.post-header .post-title {
    font-size: 40px;
}

.post-header .post-subtitle {
    font-size: 30px;
}

.post-header .post-metadata {
    color: grey;
}

.post-link {
    margin-left: 20px;
}
.post-link > *:hover {
    text-decoration: underline;
}
.post-link .post-title {
    font-size: 30px;
}
.post-link .post-subtitle {
    font-size: 25px;
}


/* Text Formatting */

p {
    font-size: 18px;
}





/* Code */
.sourceCode pre {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 12px 16px;
    overflow-x: auto;
    font-family: "Fira Code", "Courier New", monospace;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre; 
    margin: 0;
}


.sourceCode span {
    background: transparent;
    display: inline;
    padding: 0;
    margin: 0;
}

.sourceCode .kw { color: #d73a49; font-weight: bold; }
.sourceCode .cf { color: #005cc5; font-weight: bold; }
.sourceCode .bu { color: #6f42c1; }
.sourceCode .op { color: #24292e; font-weight: bold; }
