.fillRectangle(-size / 2, -size / 2, size, size);
// draw stars
surface.setFillStyle(KnownColor.WHITE);
for (int j = 0; j < 500; j++) {
surface.save()
.translate(size / 2 - Random.nextInt(size),
size / 2 - Random.nextInt(size));
drawStar(Random.nextInt(4) + 2);
surface.restore();
}