/* _style-reset.css */
/* Basic sanity reset – nothing fancy */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* Images scale nicely in flexible layouts */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
