:root {
    --background: #e3dedb;
    --forecolor: #241c1c;
    --accent: #126DB3;
    --support: #FE5000;
}
BODY {
    background-color: var(--background);
    font-family: Helvetica,Arial,sans-serif;
    font-weight: 300;
}

H1, H2 {
    color: var(--accent);
    font-family: monospace;
    font-weight: 200;
    margin-bottom:0.5em;
    border-bottom: 1px solid var(--accent);
}

H1.project {
    margin-bottom:0.1em;
    border-bottom:none;
}

H2.project {
    margin-top: 1em;
    margin-bottom:0.0;
    border-bottom:none;
}

H3, H4 {
    color: var(--forecolor);
    font-weight: 200;
    margin-bottom:0.3em;
    font-family: monospace;
}

A {
    color:var(--accent);
    text-decoration:none;
}

A:hover {
    text-decoration:underline;
}

A:visited {
    color:var(--forecolor);
}


UL {
    margin-top:0.5em;
    margin-bottom:0.5em;
    padding-left:1.2em;
}

.row {
    display:grid;
    grid-template-columns: 12% 75% 13%;
}
.menu {
    border-right: 1px solid var(--support);
    margin-right:12px;
    margin-left:0px;
    padding:5px;
}

.menu h2 {
    font-size:120%;
    color: var(--support);
    border-bottom: none;
}
.menu ul {
    font-size:90%;
}

.main {
}

.project_info {
    border-bottom: 5px solid transparent;
    padding:5px;
    padding-left:0px;
    border-bottom: 1px solid var(--accent);
}
.project_info span:nth-child(even) {
    padding-right: 0.5em;
    padding-left: 1em;
}

#files table {
    border-collapse: collapse;
    text-align: left;
}



#files table th {
    text-transform: capitalize;
    border-bottom: 1px solid var(--support);
    padding: 20px 5px 5px 5px;
    padding-top: 20px;
}

#files table tr :first-child {
    padding-left:0px;
}

#files table td {
   padding: 5px;
   text-align: left;
}

#footer {
    display:grid;
    grid-template-columns: 12% 30% 30% 28%;
    font-weight: 200;
    font-size:90%;
    margin-top:24px;
}

#footer div:first-child {
    margin-right:auto;
}
#footer div:last-child {
    margin-left:auto;
}