:root {
  --body-bg-color: #EBEAEA; /* Standard-Hintergrundfarbe */
}

body {
  background-color: var(--body-bg-color);
  color: rgba(48, 48, 51, 1);
}

/* Animationen nur, wenn die Klasse "animated" vorhanden ist */
body.animated, .VLoccc.animated {
  transition: background-color 0.2s, color 0.2s; /* Animation für den Übergang */
}

.dark-mode {
  --body-bg-color: #0d0d0d; /* Dunklere Farbe für den Dunkelmodus */
  color: white; /* Textfarbe für den Dunkelmodus */
}
