/**
 * @file
 * Minimal normalize styles for cross-browser consistency.
 * 
 * Essential reset styles only.
 */

/* Box sizing reset */
* {
  box-sizing: border-box;
}

/* Remove default margins */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

/* Body basics */
body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
}
