:root {
    --background: #000;
    --text: #fff;
}
* {
    background-color: var(--background);
    color: var(--text);
    font-family: "Courier New", Courier, monospace;
}
body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: 100vh;
    width: 100vw;
    padding: 0;
    margin: 0;
}
.main {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 5% 20%;
}
.hidden {
    color: var(--background);
}
.subtext {
    color: #666;
    font-size: 60%;
}
footer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    justify-self: flex-end;
    align-items: center;
    margin: 5vh 0;
}
.things {
    list-style: square;
}
.things a {
    font-size: 115%;
    text-decoration: none;
    user-select: none;
}
.things li {
    margin: 0 0 10px 0;
    width: 20vw;
}
.things li:hover {
    padding: 0 0 0 10px;
    cursor: pointer;
}
.contact-link {
    padding: 0 8px;
    background-color: #373737;
    border-radius: 3px;
    text-decoration: none;
}
p {
    line-height: 135%;
}
hr {
    color: #888;
    width: 70vw;
}
