:root{
  --bg: #191919;
  --text: #fef9f5;
  --muted: #cbd5e1;
  --brand: #cc0000;
  --border: rgba(255,255,255,.10);
  --container: 1200px;
}

*{ margin:0; padding:0; box-sizing:border-box; }

body{
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

html, body{
  height: auto;
  overflow: visible;
}

body{
  display: flex;
  flex-direction: column;
}



