:root {
    --bg: #121318;
    --blob: #0f4f85;
    --main-blue: #0f4f85;
    --blue-dark: #030f1f;
    --main-gray: #121318;
    --main-white: #b2bfc9;
    --sub-white: #526371;
    --dark-white: #405360;
}

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

html, body {
    height: 100%;
}

body {
    font-family: "JetBrains Mono", monospace;
    font-style: normal;
    color: var(--main-white);
    background-color: var(--main-gray);
    overflow: hidden;
}

#blob {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 2rem;
}

.hero h1 .sep {
    opacity: 0.35;
    font-weight: 300;
}

.hero p {
    margin-top: 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    opacity: 0.55;
}