/* src/styles.css */
:root {
  color-scheme: dark;
  --bg: #111611;
  --bg-soft: #182018;
  --surface: rgba(0, 0, 0, 0.5);
  --surface-2: rgba(28, 36, 29, 0.94);
  --line: #3b4637;
  --line-strong: #59634b;
  --text: #eef1e8;
  --muted: #aeb7a6;
  --olive: #7d8b53;
  --olive-bright: #a7b66d;
  --green: #3f6b3d;
  --amber: #d6a84a;
  --blue: #7aa0a8;
  --danger: #b85c4d;
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
}
* {
  box-sizing: border-box;
}
html,
body {
  min-height: 100%;
}
body {
  margin: 0;
  background-color: var(--bg);
  background-image: linear-gradient(rgb(17 22 17 / 20%), rgba(17, 22, 17, 0.9)), url(/assets/tactical-camo.png);
  background-size: auto, 680px 680px;
  background-attachment: fixed;
  color: var(--text);
  font-family:
    "Courier New",
    "Liberation Mono",
    monospace;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
a {
  color: var(--blue);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
