:root {
    /* --dark: #444433; */
    --dark: #261603;
    --light: #faf3de;
    --highlight:#ebdac5;
    background: var(--light);
    color: var(--dark);
}

body {
    width: auto;

}

header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: var(--light);
    width: 100%;
    z-index: 10;
    padding-top: 4vh;
    padding-bottom: 2vh;
    margin-top: -2em;
}

header h1 a {
    text-decoration: none;
    color: var(--dark);
}

.content ul li {
    list-style: none;
}

.content a {
    text-decoration: none;
    color: var(--dark);
}

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


.title {
    transition: ease-in-out 450ms;
}

.title:hover {
    transform:scaleX(100%);
    transition: ease-in-out 450ms;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 80%;
}

.navbar a {
    font-size: x-large;
    text-decoration: none;
    color: var(--dark);
}

.navbar a:hover {
    text-decoration: underline;
    transition: ease-in-out 250ms;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    align-content: flex-start;
}
.work {
    height: 6cm;
    width: 6cm;
    margin: 8px;
    z-index: 2;
    border: 2px solid transparent;
    padding: 2px;
}

.work:hover {
    /* border: 2px rgb(235, 237, 237) solid; */
    border: 2px var(--highlight) solid;
    border-radius: 1%;
    /* background: rgb(235, 237, 237); */
    background: var(--highlight);
    cursor: pointer;
    transition: ease-in-out 250ms;
}

.empty-work {
    height: 6cm;
    width: 6cm;
    margin: 8px;
    z-index: 2;
    padding: 2px;
}

.work div {
    width: 100%;
    height: 75%;
}

.work img {
    position: relative;
    width: 100%;
    height: 100%;
}


.work p a {
    text-decoration: none;
    color: var(--dark);
}


.page-layout {
    display: flex;
}

.content {
    margin-left: 10vw;
    margin-right: 10vw;
    width: 100%;
    margin-top: 8em;
    height: 80vh;
    z-index: 0;
}

.hamburger {
    display: none;
}

.hamburger:target {
    background: red;
    transition: ease-in-out 1000ms;
}

#canvas {
    /* max-width: 100%;
    height: 100%; */
}

/* @media screen and (max-width: 680px){

    .navbar {
        margin-top: 7em;
        background: white;
        display: none;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        width: 90vw;
        z-index: 2;
        height: 100vh;
    }

    .work {
        z-index: -1;
    }

    .navbar li a {
        color: black;
        z-index: 3;
    }

    .content {
        margin: auto;
        margin-top: 8em;
    }

    .flex-container {
        justify-content: center;
    }

    .hamburger {
        display: block;
    }

} */

