* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    background-color: white;
    color: black;
    font-family: system-ui, sans-serif;
}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem 0 1rem 2rem ;
    gap: 0.5rem;
    border-bottom: solid 1px #aaa;
    background-color: #eee;
}
nav a {
    display: inline-block;
    min-width: 9rem;
    padding: 0.5rem;
    border-radius: 0.2rem;
    border: solid 1px rgb(22, 22, 22);
    text-align: center;
    text-decoration: none;
    color: #1b1b1b;
}
nav a[aria-current= "page"] {
    color: white;
    background-color: black;
}

table,
th,
td {
    border: 1px solid #e7e7e7;
    font-size: 25px;
    width: 300px;
    height: 80px;
    background-color: gray;
    color: black;
}


.project {
    background-color: #1c1c1c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    font-size: 25px;
}

.color {
    color: aliceblue;
    display: flex;
    flex-direction: row;
}