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

body {
    min-height: 100vh;
    overflow: hidden;
    background: #fff;
}

canvas {
    display: block;
}

/* Sits over the canvas, which already fills the window */
.hint {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #8a9298;
    font: 14px system-ui, sans-serif;
    pointer-events: none; /* clicks belong to the canvas */
}
