/* Basis-Reset, Variablen, Typografie */
:root {
  --overlay-color: rgba(0,0,0,0.5);
  --text-color: #fff;
  --accent-color: #fff;
  --font-family: 'Inter', sans-serif;
  --cursor-color: #0f3b88;
  --dot-active: #0f3b88;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-family);
  color: #333;
}
/* Blocksatz für Fließtext */
p {
  text-align: justify;
}
