:root {
  --bg: #000;
  --surface: #000;
  --text: #fff;
  --muted: #fff;
  --border: rgba(255, 255, 255, 0.45);
  --accent-blue: #2a7fff;
  --accent-red: #ff3b3b;
  --content-max: 1180px;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

main {
  width: 100%;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

a {
  color: inherit;
}

::selection {
  background: #1d4ed8;
  color: #fff;
}
