body {
    margin: 40px auto;
    max-width: 649px;
    line-height: 1.6;
    font-size: 18px;
    color: #444;
    padding: 0 10px;
    background-color: white;
    color: black;
    font-size: 25px;
  }
  
  .dark-mode {
    background-color: black;
    color: white;
  }
  .dark-mode > div > div {
    background-color: black;
    color: white;
  }

  .vertical-line {
    width: 1000px;
    height: 3px; /* oder 100% für volle Höhe */
    background-color: #000; /* schwarz, kannst du anpassen */
    margin: 0 0px; /* Abstand links/rechts */
  }


  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
}

.right {
  position: absolute;
  right: 40px;
}