body {
    /*background-color: #1f1f1f;*/
    /*border: 2px solid #535353;*/
    font-family: sans-serif;
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    min-width: 256px;
    padding-top: 8px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;

    footer {
        padding-bottom: 12px;
    }
}

html {
    background-color: #181818;
    color: #e8e6e3;
    --blurple: #7289da;
}

header {
    h1 {
        padding-bottom: 2px;
    }
}

#MainBodyId {
    background-color: #34353c;
    border-radius: 5px;
    padding: 1em;
}

a {
    color: #e8e6e3;

    :visited {
        color: #e8e6e3;
    }

    :selected {
        color: #e8e6e3;
    }
}

nav {
    background-color: #34353c;
    /*border: 2px solid #535353;*/
    border-radius: 5px;
    font-family: sans-serif;
    position: sticky;
    top: 0px;
    height: min-content;
    padding: 1em;

    ul {
        list-style-type: none;
        /*border: 4px solid #111111;*/
        font-family: sans-serif;
        font-weight: bold;
        padding: 0;

        li {
            a {
                text-decoration: none;
            }
        }
    }
}



#BodyWithNav {
    display: grid;
    grid-template-columns: 80% 20%;
    column-gap: 10px;
}


/*a.Project {
    border-radius: 5px;
    padding: 1em;
    background-color: #181818;
    text-decoration: none;
}*/


div.TwoImg {
    display: grid;
    grid-template-columns: 50% 50%;

    img {
        max-width: 320px;
        max-height: 350px;
    }
}

/*a.Project:hover {
        border: 4px solid #181818;
    }*/

a.TextLink {
    color: rgb(97, 97, 255);
    text-decoration: none;
}

div.Button {
    border-radius: 8px;
    background-color: var(--blurple);
    display: inline-block;
    padding-left: 1em;
    padding-right: 1em;
    /*padding-top: 5px;
    padding-bottom: 5px;*/

        h4 {
            margin-top: 12px;
            margin-bottom: 12px;
        }
}

td {
    background-color: #535353;
    margin: 4px;
    width: 50%;
    padding: 8px;
}

aside {
    float: right;
    width: 20%;
}

.default-4-grid {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 1rem 1rem 1rem 1rem;

    a.Project {
        grid-column: span 2;
        border-radius: 5px;
        padding: 1em;
        background-color: #181818;
        text-decoration: none;
        max-width: 30rem;
        margin: 0.5rem;

        display: grid;
        grid-template-columns: 1fr 1fr;

        :visited {
            color: #e8e6e3;
        }

        :selected {
            color: #e8e6e3;
        }

        h3 {
            color: #e8e6e3;
            grid-column: span 2;
            margin-top: 0;
            margin-bottom: 10px;
        }

        img {
            width: 266px;
        }
        
        &>div {
            margin-left: 1em;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .ProjectFooter {
            flex-direction: row;
        }
    }
}

div.Tag {
    display: inline-block;
    background-color: var(--blurple);
    margin-left: 0px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 5px;
    margin-bottom: 0.25rem;
}

div.SkillBox {
    /*border: 2px solid #181818;*/
    background-color: #181818;
    border-radius: 5px;
    padding-left: 1em;
    padding-right: 1em;
    margin-bottom: 1em;
    width: fit-content;
    display: inline-block;
    vertical-align: top;
}