@font-face {
    font-family: "MainMono";
    src: url("/commitmono.woff2") format("woff2-variations");
    font-style: normal;
    font-optical-sizing: auto;
    font-display: swap;
    font-weight: normal;
}
@font-face {
    font-family: "MainMono";
    src: url("/commitmono-it.woff2") format("woff2-variations");
    font-style: italic;
    font-synthesis: none;
    font-display: swap;
    font-weight: normal;
}

:root {
    --font: "MainMono", monospace, monospace;
    --gray: #cecece;
    --base: #333;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    overflow-y: scroll;
    font-size: 18px;
}

body {
    max-width: 40rem;
    margin: 0 auto 0;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--gray);
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.3rem;
    color: var(--base);
}

header {
    margin: 2rem 0rem;
    text-align: center;
}

main {
    flex: 1 0 auto;
}

footer {
    position: relative;
}

/* VERTICAL HORIZONTAL */
div {
    padding: 1rem 0rem;
}

a {
    color: var(--base);
    text-decoration: none;
}
