:root {
    --background: #0d0d0d;
    --foreground: #e8e6e1;
    --muted: rgba(232, 230, 225, 0.38);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background: var(--background);
    color: var(--foreground);
    font-family:
        "Courier New",
        Courier,
        monospace;
}

.message {
    position: relative;

    min-height: 100svh;
    padding: 2rem;

    display: grid;
    place-items: center;

    text-align: center;
}

h1 {
    font-size: clamp(4.5rem, 14vw, 9rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.08em;
}

p {
    margin-top: 2rem;

    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.7;

    color: rgba(232, 230, 225, 0.76);
}

footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;

    transform: translateX(-50%);

    color: var(--muted);

    font-size: 0.7rem;
    line-height: 1.6;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

footer span {
    letter-spacing: 0.08em;
    text-transform: lowercase;
}