
body {
    background: #121414;
    color: #ffffff;
}

.content {
    border-radius: 10px;
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 1%;
    padding: 20px;
    text-align: center;
}

.profile {
    border-radius: 10px;
    background: #282828;
    float: right;
    width: 30%;
    margin-left: 3%;
    position: sticky;
    top: 10px;
}

.avatar {
    margin-top: 12px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}

.username {
    color: #ffffff;
    text-decoration: none;
}

.description {
}

.links {

}

.link {
    margin-left: 5px;
    margin-right: 5px;
    display: inline-block;
}

.support {
    text-align: left;
}

.supporter {
    overflow: hidden;
    /*white-space: nowrap; /* Don't forget this one */
    text-overflow: ellipsis;
    padding: 8px;
    margin: 4px;
    background: #222222;
}

.supporter 
.title {
    margin: 0;
    font-weight: bold;
    color: lightgray;
}

.supporter code {
    color: #588fc4;
    font-size: 12px;
}

.supporter a {
    color: #6382fd;
    font-size: 13px;
    text-decoration: none;
}

.supporter a:hover {
    text-decoration: underline;
}

.projects {
    display: grid;
    grid-template-columns: repeat(8, 0.5fr);
    grid-auto-rows: minmax(auto, auto);
}

.projects a {
    text-decoration: none;
    color: #ffffff;
}

.project {
    font-size: 12px;
    color: #93A564;
}

.project p {
    display: none;
    visibility: hidden;
}

/* On mouse-over, add a deeper shadow */
.project:hover {
}

.blog {
    padding: 1%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: minmax(auto, auto);
}

.blog a {
    color: #ffffff;
    text-decoration: none;
}

.post {
    text-align: left;
    padding: 12px;
    margin: 4px;
    background: #222222;
    border-style: solid;
    border-width: 1px;
    border-color: #303030;
    border-radius: 10px;
    min-height: 128px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
}

.post h1 {
    margin: 0px;
    text-align: left;
    font-size: 25px;
}

.post:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.4);
}

.post:active {
    transform: scale(0.85);
}

.post .description {
    color: rgb(164, 156, 144);
}

.metadata p {
    display: inline;
    font-size: 14px;
    color: rgb(164, 156, 144);
}

.postbody {
    text-align: left;
    padding: 12px;
    margin: 4px;
    border: 0px;
    width: 65%;
}

.postbody img {
    width: 100%;
}

.navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    grid-auto-rows: minmax(auto, auto);
}

.navigation a {
    color: #93A564;
}

@media (max-width: 1280px) {
    .content {
        width: 60%;
        margin-left: 20%;
        margin-right: 20%;
    }

    .profile {
        width: 40%;
    }

    .projects {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .content {
        width: 90%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }

    .profile {
        margin-left: 0;
        width: 100%;
        float: none;
        clear: all;
        position: relative;
    }

    .projects {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* Python Markdown CodeHilite extension */

pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.codehilite .hll { background-color: #ffffcc }
.codehilite { background: #202020; }
.codehilite .c { color: #3D7B7B; font-style: italic } /* Comment */
.codehilite .err { border: 1px solid #FF0000 } /* Error */
.codehilite .k { color: #008000; font-weight: bold } /* Keyword */
.codehilite .o { color: #666666 } /* Operator */
.codehilite .ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */
.codehilite .cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */
.codehilite .cp { color: #9C6500 } /* Comment.Preproc */
.codehilite .cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */
.codehilite .c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */
.codehilite .cs { color: #3D7B7B; font-style: italic } /* Comment.Special */
.codehilite .gd { color: #A00000 } /* Generic.Deleted */
.codehilite .ge { font-style: italic } /* Generic.Emph */
.codehilite .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.codehilite .gr { color: #E40000 } /* Generic.Error */
.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.codehilite .gi { color: #008400 } /* Generic.Inserted */
.codehilite .go { color: #717171 } /* Generic.Output */
.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.codehilite .gs { font-weight: bold } /* Generic.Strong */
.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.codehilite .gt { color: #0044DD } /* Generic.Traceback */
.codehilite .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
.codehilite .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
.codehilite .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
.codehilite .kp { color: #008000 } /* Keyword.Pseudo */
.codehilite .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
.codehilite .kt { color: #B00040 } /* Keyword.Type */
.codehilite .m { color: #666666 } /* Literal.Number */
.codehilite .s { color: #BA2121 } /* Literal.String */
.codehilite .na { color: #687822 } /* Name.Attribute */
.codehilite .nb { color: #008000 } /* Name.Builtin */
.codehilite .nc { color: #0000FF; font-weight: bold } /* Name.Class */
.codehilite .no { color: #880000 } /* Name.Constant */
.codehilite .nd { color: #AA22FF } /* Name.Decorator */
.codehilite .ni { color: #717171; font-weight: bold } /* Name.Entity */
.codehilite .ne { color: #CB3F38; font-weight: bold } /* Name.Exception */
.codehilite .nf { color: #0000FF } /* Name.Function */
.codehilite .nl { color: #767600 } /* Name.Label */
.codehilite .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
.codehilite .nt { color: #008000; font-weight: bold } /* Name.Tag */
.codehilite .nv { color: #19177C } /* Name.Variable */
.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
.codehilite .w { color: #bbbbbb } /* Text.Whitespace */
.codehilite .mb { color: #666666 } /* Literal.Number.Bin */
.codehilite .mf { color: #666666 } /* Literal.Number.Float */
.codehilite .mh { color: #666666 } /* Literal.Number.Hex */
.codehilite .mi { color: #666666 } /* Literal.Number.Integer */
.codehilite .mo { color: #666666 } /* Literal.Number.Oct */
.codehilite .sa { color: #BA2121 } /* Literal.String.Affix */
.codehilite .sb { color: #BA2121 } /* Literal.String.Backtick */
.codehilite .sc { color: #BA2121 } /* Literal.String.Char */
.codehilite .dl { color: #BA2121 } /* Literal.String.Delimiter */
.codehilite .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
.codehilite .s2 { color: #BA2121 } /* Literal.String.Double */
.codehilite .se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */
.codehilite .sh { color: #BA2121 } /* Literal.String.Heredoc */
.codehilite .si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */
.codehilite .sx { color: #008000 } /* Literal.String.Other */
.codehilite .sr { color: #A45A77 } /* Literal.String.Regex */
.codehilite .s1 { color: #BA2121 } /* Literal.String.Single */
.codehilite .ss { color: #19177C } /* Literal.String.Symbol */
.codehilite .bp { color: #008000 } /* Name.Builtin.Pseudo */
.codehilite .fm { color: #0000FF } /* Name.Function.Magic */
.codehilite .vc { color: #19177C } /* Name.Variable.Class */
.codehilite .vg { color: #19177C } /* Name.Variable.Global */
.codehilite .vi { color: #19177C } /* Name.Variable.Instance */
.codehilite .vm { color: #19177C } /* Name.Variable.Magic */
.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */

