<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Simple Shapes</title> <meta name="description" content="Simple shapes. Draw them, riff on them."> <style> body { margin: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #f0f0f0; padding: 40px; } .canvas-container { width: 100%; max-width: 800px; margin: 20px; padding: 40px; background: white; box-shadow: 0 0 20px rgba(0,0,0,0.1); } canvas { width: 100%; height: auto; background: white; } /* Print styles */ @media print { body { background: none; padding: 0; } .canvas-container { max-width: none; width: 8.5in; margin: 0; padding: 0; box-shadow: none; } canvas { width: 8.5in; height: 11in; border: none; } } </style> </head> <body> <div class="canvas-container"> <canvas id="canvas"></canvas> </div> <script src="app.js"></script> </body> </html>