body {
    margin: 0px;
    color: white;
    background-color: #0e0e0e;
    font-family: "Atkinson Hyperlegible";
}
.headerContainer {
    height: 180px;
    background-color: #2b2b2b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    flex-direction: column;
    font-family: "Atkinson Hyperlegible Mono";
}
.headerContainer a {
    font-size: 32px;
}
.headerNavbar {
    background-color: #1a1a1a;
    color: white;
    padding: 7px;
    display: flex;
    justify-content: space-around;
    font-family: "Atkinson Hyperlegible Mono";
}
.headerNavbar a:hover {
    background-color: white;
    color: black;
}
#subtitle {
    font-size: 12px;
}
p, a {
    color: white;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    font-style: italic;
}
.body a {
    color: white;
    font-family: "Atkinson Hyperlegible";
    background-color: #1a1a1a;
    text-decoration: none;
}
.panelContainer {
    display: flex;
    gap: 12px;
}
.bodyContainer {
    margin: 24px;
}
.panel {
    background-color: #1a1a1a;
    padding: 12px;
}
*::selection {
    background-color: white;
    color: black;
}