:root {
    --bg: #000000;
    --text: #ffffff;
    --selection-bg: #444444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Space Grotesk", system-ui, Helvetica, Arial, sans-serif;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.01rem;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text);
    background: var(--bg);
    overflow: hidden;
}

canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.page {
    position: relative;
    z-index: 1;

    height: 100vh;

    padding-top: 60px;
    padding-left: 200px;
}

.logo {
    width: 112px;
    margin-bottom: 48px;
}

.logo svg {
    width: 100%;
    display: block;
}

.content {
    max-width: 620px;
}

.content p {
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 36px;
    font-weight: 400;
}

.links {
    display: flex;
    gap: 24px;
    margin-top: 8px;
    margin-bottom: 15px;
}

.links a,
.footer a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    padding: 3px 6px;
}

.links a:hover,
.links a:focus-visible,
.footer a:hover,
.footer a:focus-visible {
    outline: 2px dotted rgba(255,255,255,.9);
    outline-offset: 3px;
}

.footer {
    display: flex;
    gap: 34px;
    margin-top: 15px;
    font-size: 16px;
}

a {
    transition: .12s ease;
}

@media (max-width: 900px) {

    body {
        overflow: auto;
    }

    .page {
        padding: 40px 24px;
        height: auto;
        min-height: 100vh;
    }

    .logo {
        margin-bottom: 36px;
    }

    .links {
        flex-wrap: wrap;
    }

    .footer {
        flex-wrap: wrap;
    }
}
