body {
  background: #eef4f2;
  color: #222;
  transition: background 0.3s, color 0.3s;
}

html.body.dark {
  background: #121212;
  color: #eee;
}

main {
  max-width: 1600px;
  margin: 0 auto;

}



a {
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #f0a500;
}



html {
    overflow-x: hidden;
    scrollbar-gutter: stable; /* verhindert Layout-Shift durch Scrollbar */
}


