@import './typography.css';
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

:root {
  --color-border: #333;
  --color-text-primary: #f0f0f0;
  --color-text-secondary: #bbbbbb;
  --color-subtitle: #999999;
  --color-meta: #777777;
  --color-bg: #111111;
  --color-bg-secondary: #1a1a1a;
  --color-bg-hover: #222222;
  --rounded: .4rem;      /* For outer rounding of components */
  --rounded-in: .25rem;   /* For inner/smaller element rounding */
}

* {
  box-sizing: border-box;
  border: none;
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--color-bg);
  background-image: url('https://www.transparenttextures.com/patterns/dark-fish-skin.png');
  background-repeat: repeat;
  background-size: auto;
  color: var(--color-text-primary);
}