<!DOCTYPE html>
<html>
<head>
    <style>
        canvas {
            background: transparent;
        }
    </style>
</head>
<body>
    <canvas id="logoCanvas" width="500" height="100"></canvas>
    <script>
        const canvas = document.getElementById('logoCanvas');
        const ctx = canvas.getContext('2d');
        
        // Set text properties
        ctx.font = 'bold 48px Arial';
        ctx.fillStyle = '#000000';
        
        // Draw "mitrix" text
        ctx.fillText('mitrix', 50, 60);
        
        // Draw moon symbols
        function drawMoon(x, y) {
            ctx.beginPath();
            ctx.arc(x, y, 10, 0, Math.PI * 2);
            ctx.fillStyle = '#000000';
            ctx.fill();
        }
        
        // Draw moons in a pattern
        for(let i = 0; i < 8; i++) {
            drawMoon(20 + i * 60, 20);
            drawMoon(20 + i * 60, 80);
        }
    </script>
</body>
</html>
