/* base.css – small, app-friendly baseline */

/* 1) predictable sizing */
*, *::before, *::after { box-sizing: border-box; }

/* 2) kill the default body margin */
body { margin: 0; }

/* 3) media never overflows its container */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 4) form controls inherit font */
input, button, textarea, select {
  font: inherit;
}

/* 5) allow long strings to wrap instead of blowing up layout */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
