@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --bg-color: #0b1215;
  --bg-color-semi: #18262c;
  --primary-color: #ad1f25;
  --secondary-color: #595a5c;

  /* Shadows */
  --custom-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  --custom-shadow-100: -5px 0 20px -5px rgba(0, 0, 0, 0.5);

  color-scheme: var(--color-scheme, light);

  @media (prefers-color-scheme: light) {
    --color-scheme: light;
  }
}
