* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 16px;
    line-height: 20px;
}

html {
    display: flex;
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 8px;
    background-color: #101010;
    color: #DDDDDD;
    position: relative;
}

ul
{
    margin: 0;
    padding: 0;
    list-style: "- ";
    padding-left: calc( 1ch + 2px );
}

a {
    color: #AAAAAA;
}

.container-with-gaps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body > .container-with-gaps {
    position: relative;
    z-index: 1;
}

.ascii-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
    user-select: none;
}

.ascii-background > pre {
    margin: 0;
    font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, monospace;

    font-size: max(0.55vw, 1vh);
    line-height: 1.05;
    white-space: pre;
    opacity: 0.25;
    color: #888888DD;
}

.transparent-text {
    color: #DDDDDD99;
}

.box {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 0.1rem solid #444444;
    border-radius: 4px;
    background-color: #151515;
}

.box>*+* {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 0.1rem solid #444444;
}

.readable-width {
    width: 471.8px;
    max-width: calc( 100vw - 16px );
}

.big {
    font-size: 28px;
    line-height: 32px;
    font-weight: bold;
}