:root {
  color-scheme: light;
  --text: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --blue: #1a73e8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #fff;
}

body {
  min-width: 280px;
  min-height: 100dvh;
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.app {
  min-height: 100dvh;
  background: #fff;
}

.main-content {
  min-height: 100dvh;
}

a {
  color: inherit;
}

code {
  padding: 2px 4px;
  border-radius: 4px;
  background: #f1f3f4;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.92em;
}
