:root {
  --color-bg: #000000;
  --color-surface: #121212;
  --color-text: #FFFFFF;
  --color-text-muted: #E5E5E5;
  --color-secondary: #0FBF8F;
  --color-accent: #4B5DFF;
  --color-detail: #D9A5A5;
  --color-border: #1E1E1E;
  --color-hover: #1A1A1A;
  --color-focus-ring: #4B5DFF;
}


@font-face {
  font-family: 'Vanem';
  src: url(../fonts/Vanem.otf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  height: 100vh;
}

.header {
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-title {
  font-family: 'Vanem', sans-serif;
  font-size: 100px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: center;

  background-color: var(--color-bg);
}