/* html,
body {
    margin: 0;
    padding: 0;
};

main {
    text-align: center;
    width: 100%;
};

canvas {
    display: block;
}; */

/* html,
body {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: white;
    touch-action: none;
}

main {
    text-align: center;
    width: 100%;
};

canvas {
    display: block;
};

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
} */

* {
    margin: 0;
    padding: 0;
}

body {
    overflow: hidden;
    background: white;
}