body {
      background-color: var(--base-color);
      color: var(--text-color);
      font-family: Arial, sans-serif;
}

.willkommen {
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--text-color);
      font-size: 80px;
      padding: 30px;
      font-weight: bold;
}

.links {
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--link-color);
      padding: 25px;
      font-size: 35px;
      transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out
}

.links:hover {
      color: var(--link-hover-mask);
}

.version {
  font-size: 10px;
  opacity: 0.5;
  position: fixed;
  bottom: 5px;
  left: 8px;
}

.copyright {
  font-size: 10px;
  opacity: 0.5;
  position: fixed;
  bottom: 5px;
  left: 42%;
}

a { color: var(--link-color);   opacity: 0.8;}