:root {
    --bright-color: rgb(255, 255, 240);
    --dark-color: rgb(30, 30, 30);
    --light-color: rgb(220, 220, 157);
    --glow-factor: 1;
    --outline-color: rgba(0, 0, 0, 0.25);
    --font-size: calc(0.15 * 100vh);
    --left-right-gap: calc(0.5 * var(--font-size));
}

* {
    user-select: none;
    font-family: "Inconsolata", monospace;
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
