:root {
  --primary-color: rgb(255, 204, 0);
  --secondary-color: rgb(0, 51, 102);
  --tertiary-color: rgb(0, 102, 204);
  --background-light: rgb(240, 240, 240);
  --background-dark: rgb(30, 30, 30);
  --text-color-dark: rgb(50, 50, 50);
  --text-color-light: rgb(255, 255, 255);
  --button-color: rgb(255, 204, 0);
  --button-hover: rgb(204, 153, 0);
  --success-color: rgb(0, 153, 76);
  --warning-color: rgb(255, 140, 0);
  --error-color: rgb(204, 0, 0);
  --link-color: rgb(0, 153, 255);
  --border-color: rgb(200, 200, 200);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Carlito', sans-serif;
  background-color: var(--background-light);
  color: var(--text-color-dark);
  line-height: 1.6;
}

.main-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
}

.header h1 {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.subtitle {
  font-size: 1.25rem;
}

.domain {
  font-size: 0.875rem;
  color: var(--tertiary-color);
}

.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: var(--link-color);
  text-decoration: underline;
}

a:hover {
  color: var(--tertiary-color);
}

.footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-color-dark);
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

@font-face {
  font-family: 'Carlito';
  src: url('grafik/Carlito-Regular.ttf') format('truetype');
}

@font-face {
  font-family: '3-of-9';
  src: url('grafik/LibreBarcode39-Regular.ttf') format('truetype');
  font-display: swap;
}
