body {
    margin: 0;
    overflow: hidden;
    background: black;
    font-family: 'Roboto Mono', monospace;
    height: 100vh;
    position: relative;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* behind H1 */
}

#title-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* perfectly vertically centered */
    z-index: 10;
    /* above canvas */
    pointer-events: none;
}

#title {
    font-size: 72px;
    color: white;
    text-align: center;
}