body {
    /* font-family: 'Courier New', monospace; */
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
    background-color: black;
    overflow-x: hidden;
    /* overflow-y: hidden; */
    margin-top: 0;
    padding-top: 0;
}

button {
    /* font-family: 'Courier New', monospace; */
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: large;
    position: relative;
    background: rgba(0, 0, 0, 0);
    color: white;
    border: none;
    transition: color 0.4s ease;
    z-index: 0;
    padding: 10px;
}

button:hover {
    color: black;
}

a {
    color: white;
}

.page-header {
    display: flex;
    justify-content: space-between;
    padding: 7px;
    position: sticky;
    top: 0;
    height: 8vh;
    background-color: black;
    border-bottom: white solid 3px;
    z-index: 10;
}

table {
    width: 70%;
    margin: 0 auto;
    padding-top: 0;
}

table td {
    border: 3px solid black;
    padding: 10px;
    background-color: black;
    transition: background-color 0.4s cubic-bezier(0.7, 0.1, 0.9, 1);
}

table td:hover {
    background-color: white;
}

table img {
    width: 70%;
    height: auto;
    max-height: 70%;
    display: block;
    margin: 0 auto;
    /* opacity: 50%; */
    transition: filter 0.4s cubic-bezier(0.7, 0.1, 0.9, 1);
}

table td:hover img {
    filter: invert(1);
}

.project-description {
    /* padding-top: 10vh; */
    width: 65%;
    margin-left: 5%;
    line-height: 1.75;
}

.project-description img {
    border: 3px solid white;
    display: block;
    margin: 0 auto;
}

.inline-code {
    font-family: 'Courier New', Courier, monospace;
    background-color: black;
    border: 1px solid white;
    border-radius: 3px;
    padding: 1px 3px;
}

code {
    font-size: large;
}