:root {
    --text-gray: #b5b5b5;
}

html {
    height: 100%;
    width: 100%;
    background-color: #1a1a1a;
    font-family: sans-serif;
    display: grid;
    padding: 2vh;
    box-sizing: border-box;
    grid-template-rows: 1fr;
}

.main {
    min-width: 375px;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    color: var(--text-gray);
    margin: 0 auto;
    align-self: stretch;
    height: 100%
}

a {
    color: var(--text-gray);
}

.header-ct {
    display: flex;
    flex-flow: column nowrap;
}

.header-0 {
    display: flex;
    align-items: flex-end;
    height: 100%;
    margin: 0;
    padding: 0;
    gap: 1em;
}

.header-title, .subtext {
    margin: 0;
    padding: 0;
    align-self: baseline;
    /*border: 2px solid yellow;*/
}

.header-title {
    font-family: ui-serif;
}

.header-title a {
    color:var(--text-gray);
    text-decoration: none;

}

.subtext {
    font-style: italic;
}

.nav {
    align-self: center;
}

.nav a {
    color: var(--text-gray);
}

hr {
    width: 100%;
    background-color: var(--text-gray);
    border: none;
    height: 3px;
    margin: 0;
}

.content {
    align-self: stretch;
    height: 100%;
}

.content h2 {
    font-style: italic;
}

footer {
margin: none;
font-size: 0.8em;
color: #696969;
font-style: italic;
}