/**
 * FORRE_DARK - Base & Reset
 */

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--body-bg);
  font-family: var(--font-family);
  color: var(--text-primary);
  line-height: 1.5;
}