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

body {
    background: #000;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.page {
    min-height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
    box-sizing: border-box;
}

.logo {
    margin: 0;
    white-space: pre;
    line-height: 1.05;
    font-size: clamp(8px, 1.6vw, 18px);
    user-select: none;

    background: linear-gradient(
            90deg,
            #ff004c,
            #ff7a00,
            #ffe600,
            #00e676,
            #00c8ff,
            #7a5cff,
            #ff00c8
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;

    filter: drop-shadow(0 0 10px rgba(255,255,255,0.12));
}
