/* =========================
   Fonts
========================= */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-VariableItalic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* =========================
   CSS Reset
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
}

/* =========================
   Farbvariablen
========================= */
:root {
  --gvbe-red: #c4161c;
  --gvbe-blue: #0b3c78; /* Royal-Blau */
  --gvbe-blue-light: #e7eef7;
  --gvbe-gray: #f4f4f4;
  --gvbe-dark: #1a1a1a;
}

/* =========================
   Basics
========================= */
a {
  color: var(--gvbe-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

@media (max-width: 768px) {
  .container {
    width: 92%;
  }
}