        body {
            margin: 0; /* Remove default margin */
            //overflow: hidden; /* Hide any overflowing content */
			width:100%;
			height:100%;
        }

        canvas {
            position: fixed;
            top: 0;
            left: 0;
			display: block;
            z-index: -1; /* Set a negative z-index to place the canvas behind other content */
        }

        .content {
            /* Add styles for your content here */
            position: relative;
            z-index: 1; /* Set a positive z-index to place content on top of the canvas */
            padding: 20px;
        }