/*
 * File:    rocket4Styles.css
 * App:     SWGriffinRocketSaga2026-04-30-Stg1
 * Stage:   4 — SketchWave Classes
 * Author:  Griffin + GitHub Copilot (Claude Sonnet 4.6)
 * Date:    2026-05-09
 *
 * Purpose: Minimal CSS for the Stage 4 sketch page.
 *          Removes all browser default margin and padding so the p5.js
 *          canvas fills the viewport flush with every edge — identical
 *          to the reset used in Stages 2 and 3.
 */

html, body {
  margin: 0;
  padding: 0;
}

canvas {
  display: block;
}
