:root {
  color-scheme: light;
  font-family: var(--font-family-base);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-family-base);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: var(--line-height-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-family-display);
  line-height: var(--line-height-heading);
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

.page-root {
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-bg);
}
