#myCanvas {
    width: 500px; /* Set the desired width */
    height: 500px; /* Set the desired height */
    border: 1px solid black; /* Just for visualization */
    background-color: #f0f0f0; /* Background color */
    display: block; /* Prevents a small gap below the canvas */
    margin: 20px auto; /* Centers the canvas horizontally */
}

body {
    background-color: #eee; /* Light gray background for the page */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}