/* Compatibility base stylesheet for templates that still include main.css. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  background: var(--bg-color, #0f1020);
  color: var(--text-color, #f8fafc);
  font-family: 'Inter', 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

a {
  color: inherit;
}

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

img,
svg,
video,
canvas {
  max-width: 100%;
}

.hidden {
  display: none !important;
}
