html, body {
  margin: 0;
  padding: 0;
}
canvas {
  display: block;
}

/* p5.jsキャンバス専用スタイル */
main canvas {
  /* iPad/タッチデバイス対応 */
  touch-action: pinch-zoom;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
