:root {
  --link: #333;
  --accent: #ffb000;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 1;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}
body {
  /* eigenes Background-Bild */
  background: url("images/background.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #333;
  line-height: 1;
}

a {
  color: var(--link);
  transition: var(--transition);
}

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

a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Header mit Logo */
header {
  text-align: center;
  padding: 0rem 0rem;
  background: rgba(
    255,
    255,
    255,
    0.8
  ); /* halbtransparenter Hintergrund, damit Text lesbar bleibt */
}
header .logo {
  max-width: 250px; /* skaliert automatisch */
  height: auto;
  margin-bottom: 2rem;
}
header h1 {
  font-size: 2rem;
  color: #000000;
}
header p {
  font-size: 1.1rem;
}

/* Footer mit Logo */
footer {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  color: #000000;
}
footer .logo {
  max-width: 200px; /* skaliert automatisch */
  height: auto;
  margin-bottom: 1rem;
}
