*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blood: #8b0000;
  --fire: #ff4500;
  --gold: #d4af37;
  --smoke: #1a1a1a;
  --ash: #2d2d2d;
  --khaki: #3d3a2a;
  --cream: #f0e6c8;
  --neon-red: #ff2020;
  --explosive: #ff6b00;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #0a0a0a;
  color: var(--cream);
  font-family: Oswald, sans-serif;
  overflow-x: hidden;
  cursor: crosshair;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: var(--fire);
  border-radius: 3px;
}
::selection {
  background: var(--fire);
  color: #000;
}
