/* style.css */
html,
body {
    margin: 0;
    padding: 0;
    background: #222;
}

main {
    text-align: center;
    width: 100%;
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
}

canvas {
    display: block;
    height: auto !important;
    width: auto !important;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    vertical-align: middle;
    touch-action: none;
}