/* Reset */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
    font-weight: 10;
  letter-spacing: 0.02em;
  background: #f5f5f5;
    min-width: 0;
}

h1 {
  font-weight: 500;
  letter-spacing: 0.01em;
    font-size: 2.4rem;
}

p {
  font-weight: 200;
}

/* Logo + Linie links fixieren */
.sidebar {
  position: fixed;
  top: 20px;
  left: 40px;
}  
.sidebar a {
  cursor: pointer;
}

.sidebar img {
  width: 340px; /* anpassen */
  display: block;
}

/* Vertikale Linie */
.vertical-line {
  width: 1px;
  height: 100vh;
  background-color: #333;
  margin-top: 0px;
  margin-left: 75px; /* damit sie unter dem S sitzt */
}

/* Main Bereich */
main {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
   font-weight: 20;
  line-height: 1.0;
}

/* Zentrierter Inhalt */
.content {
  text-align: center;
    max-width: 500px;      /* größer als vorher */
  margin-left: 160px;    /* Abstand zur Linie */
    min-width: 0;
}

.content h1 {

  margin-bottom: 60px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  white-space: normal;

}

.content h3 {

  margin-top: 100px;
  margin-bottom: 60px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  white-space: normal;
}

footer {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

footer a {
  font-size: 0.8rem;
  opacity: 0.6;
  text-decoration: none;
  color: inherit;
}



@media (max-width: 768px) {
  .sidebar {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .sidebar img {
    width: 250px;
    margin-bottom: 30px;
    transform: translateX(-10px);
  }

  /* Schriftgrößen HIER ändern 👇 */

  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.9rem;
    line-height: 0.2;   
  }

  /* Linie ausblenden */
  .vertical-line {
    display: none;
  }

  main {
    height: auto;
    padding: 40px 20px;
  }
  
  /* Sidebar nicht mehr fix links */
  .sidebar {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  /* Logo kleiner */
  .sidebar img {
    width: 250px;
    margin-bottom: 30px; /* Abstand zur Linie */
    transform: translateX(-10px); /* nach links schieben */
}
  
  
  .content {
    margin: 0 auto;   /* ← überschreibt margin-left */
    max-width: 400px;
    
  }

  .content h1 {
    white-space: normal;
  }

  .sidebar {
  display: flex;
  justify-content: center;
}

  /* Linie ausblenden */
  .vertical-line {
    display: none;
  }

  /* Main nicht mehr full height zentriert (optional, oft besser mobil) */
main {
  height: auto;
  padding: 90px 30px;   /* deutlich weniger Abstand oben */
  align-items: flex-start; /* statt mittig */
}
  }

.content h3 + p {
  margin-top: 20px;
}


.content p {
  line-height: 1.6; /* oder z.B. 24px */
}

  /*@media (max-width: 480px) {

  .sidebar {
    position: static;  
    left: auto;
  }

  .vertical-line {
    display: none;  
  }

  .content {
    margin: 0 auto;
    padding: 0 20px;
  }*/

}

