:root {
    --navbar-height: 60px;
  }
  
  body {
    margin: 0;
    background: black;
    overflow: hidden;
    font-family: sans-serif;
  }
  
  * {
    box-sizing: border-box;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: var(--navbar-height);
    width: 100%;
    background: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
  }
  
  .navbar a,
  .menu-button {
    color: white;
    text-decoration: none;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: black;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: height 0.3s ease-in-out;
    z-index: 999;
  }
  
  .menu.active {
    height: 100vh;
  }
  
  .menu a {
    color: white;
    font-size: 24px;
    padding: 15px;
  }
  
  /* Chaos-Galerie */
  .chaos-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    padding-top: var(--navbar-height);
  }
  
  /* Bilder */
  .chaos-img {
    position: absolute;
    width: 240px;
    height: 160px;
    object-fit: cover;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    opacity: 0.9;
  }
  
  /* Bewegungsmuster */
  @keyframes float1 {
    0% { top: 10%; left: 10%; }
    100% { top: 60%; left: 70%; }
  }
  
  @keyframes float2 {
    0% { top: 30%; left: 80%; }
    100% { top: 70%; left: 20%; }
  }
  
  @keyframes float3 {
    0% { top: 50%; left: 40%; }
    100% { top: 10%; left: 90%; }
  }
  
  @keyframes float4 {
    0% { top: 70%; left: 10%; }
    100% { top: 20%; left: 80%; }
  }
  
  @keyframes float5 {
    0% { top: 20%; left: 60%; }
    100% { top: 80%; left: 30%; }
  }
  
  /* Schriftzug CERBERE */
  .cerbere-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 110px;
    font-weight: 900;
    color: black;
    padding: 30px 60px;
    z-index: 100;
    pointer-events: none;
    mix-blend-mode: normal;
    text-align: center;
  }
  


