/* Apparently the default box-sizing is content-box which is harder to size */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  max-inline-size: 100%;
  block-size: auto;

  font-family: system-ui;
  line-height: 1.5;
}

p,
li,
h1,
h2,
h3,
h4 {
  /* Help prevent overflow of long words/names/URLs */
  overflow-wrap: break-word;
  hyphens: auto;
}
