<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>RustPixelGame</title>
<style>
body {
margin: 0;
padding: 0;
background: #000;
overflow: hidden;
}
#canvas {
position: absolute;
top: 0;
left: 0;
image-rendering: pixelated;
image-rendering: crisp-edges;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<script src="./index.js" type="module"></script>
</body>
</html>