/* styles.css */
body {
    margin: 0;
    overflow: hidden;
    background-color: #fff; /* Background color of the body */
}

#gameCanvasContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

canvas {
    display: block; /* Remove unwanted margins or padding */
    background: #fff; /* Canvas background color */
}
