html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff; /* Set the background color */
}

#canvas {
    max-width: 100vw;  /* Maximum width is the viewport width */
    max-height: 100vh; /* Maximum height is the viewport height */
    width: 100%;
    height: auto;
    display: block;
}

/* Optional: Keep a white background for the canvas */
canvas {
    background-color: white;
}
