/* Farbdefinitionen ersetzt – bitte bei Bedarf anpassen */
:root {
  --fg: #333333;
  --primary-fg: #222222;
  --ac: #FF811A;
}

* {
  color: var(--fg);
}

html,
body {
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom right, rgb(255, 129, 26), rgb(255, 142, 49), white) no-repeat fixed;
  color: var(--primary-fg);
  margin: 0;
  padding: 0;
}

#root,
:root,
#root > [data-reactroot],
:root > [data-reactroot] {
  background: transparent;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  color: var(--ac);
  text-decoration: none;
}