body {
    margin: 0;
    padding: 0;
    background: #000;
    overflow: auto;  /* Enable both horizontal and vertical scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: fit-content;  /* Ensure body accommodates full canvas width */
}

canvas {
    display: block;
    position: relative;
}

