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

:root {
  --accent: #7D77E6;
  --accent-soft: #202028;
  --accent-text: #A7A2F0;
  --bg: #18181B;
  --bg2: #1D1D21;
  --bg3: #222228;
  --border: #303036;
  --text: #ECECF0;
  --muted: #8A8A92;
  --radius-md: 10px;
  --radius-lg: 14px;
  --gutter: 1.5rem;
}

@media (min-width: 900px) {
  :root {
    --gutter: 6rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}