* {
  color: var(--text-normal);
  margin: 0;
  padding: 0;
}
*::selection {
  background-color: rgba(89, 167, 241, 0.5);
}

:root {
  --background-main: #111;
  --background-invert: #eee;
  --text-normal: white;
  --text-dark: #ccc;
  --text-extra-dark: #666;
  --color-scheme: dark;
  --mix-blend-mode: darken;
  --invert: 0;
}
:root.light-mode {
  --background-main: #eee;
  --background-invert: #111;
  --text-normal: black;
  --text-dark: #222;
  --text-extra-dark: #444;
  --color-scheme: light;
  --mix-blend-mode: lighten;
  --invert: 1;
}

html {
  overflow-x: hidden;
}

body {
  background: var(--background-main);
  font-family: Inter, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color-scheme: var(--color-scheme);
  overflow-x: hidden;
}
body .gb, body .gb-wrapper > * {
  color: #ccc;
  background-color: #222;
  border: 1px rgba(51, 51, 51, 0.5333333333) solid;
  border-radius: 8px;
  padding: 0 12px;
  transition-duration: 200ms;
}
body .heading-lines {
  position: relative;
  display: flex;
  align-items: center;
}
body .heading-lines::before, body .heading-lines::after {
  height: 1px;
  width: 80px;
  position: absolute;
  content: "";
}
body .heading-lines::before {
  left: -100px;
  background: linear-gradient(90deg, transparent, var(--text-extra-dark));
}
body .heading-lines::after {
  right: -100px;
  background: linear-gradient(270deg, transparent, var(--text-extra-dark));
}/*# sourceMappingURL=general.css.map */