@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600;700&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #121212;
}

#splash {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #121212;
    align-items: center;
    opacity: 0;
    transition: opacity 500ms ease;
    font-family: "Source Code Pro", monospace;
}

#title {
    font-size: 5rem;
    color: #8e8e93;
    letter-spacing: -0.03em;
}

#title .accent {
    color: #efefea;
}

#status {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    opacity: 0.5;
    color: #8e8e93;
}

#canvas {
    display: block;
    width: 100%;
    height: 100%;
}
