#footer {
    margin: 0 auto;
    max-width: calc(100% - 20vmin);
    text-align: center;
    font-size: small;
    background-color: #270000;
    padding: 2vmin;

    --bezier: cubic-bezier(0.22, 0.61, 0.36, 1);
    --edge-light: hsla(0, 0%, 50%, 0.8);
    --text-light: rgba(255, 255, 255, 0.4);

    border-radius: 0.5em;
    min-height: 2.4em;
    min-width: 3em;
    align-items: center;
    gap: 0.5em;

    font-family: "Courier Prime", "Courier New", Courier, monospace, serif;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: bold;

    color: hsla(0, 0%, 90%);
    border: 0;
    box-shadow: inset 0.4px 1px 4px var(--edge-light);

    .textTop {
        margin-top: 0;
    }
    .textBottom {
        margin-bottom: 0;
    }

    button {
        font-size: small;
    }
}

#bottomSpacer {
    height: 5vmin;
    width: calc(100% - 20vmin);
    margin: 0 auto;
}