* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.grow {
  flex: 1;
  min-width: 0;
}

::selection {
  background: color-mix(in srgb, var(--accent-live) 35%, transparent);
}