/* Grundlegende Reset-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif; /* Orbitron ist eine Google-Schriftart, die futuristisch aussieht */
  }

  body {
    background-color: #0a0f0d; /* Dunkler Hintergrund, ähnlich dem Aussehen der Handterminals */
    color: #c5c6c7; /* Heller Text für Kontrast */
    font-size: 16px;
  }

  /* Stil für Container und Layout */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  /* Typografische Stile */
  h1, h2, h3, h4, h5, h6 {
    color: #8abeb7; /* Akzentfarbe für Überschriften */
    margin-bottom: 20px;
  }

  p {
    color: #c5c6c7;
    line-height: 1.6;
  }

  /* Buttons und Links */
  a, button {
    text-transform: uppercase;
    text-decoration: none;
    color: #8abeb7;
    background-color: transparent;
    border: 1px solid #8abeb7;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  a:hover, button:hover {
    background-color: #8abeb7;
    color: #0a0f0d;
  }

  /* Formular-Stile */
  input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #122928;
    border: none;
    border-bottom: 2px solid #8abeb7;
    color: #c5c6c7;
  }

/* Navigation-Stile */
nav {
    background-color: #0b3d3d;
    padding: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

nav ul li a {
    color: #c5c6c7;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #8abeb7;
}

/* Mobiles Menü - Standardmäßig versteckt */
nav ul {
    display: none;
  }

  /* Menü-Button für mobile Ansicht */
  .nav-toggle {
    display: none;
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #8abeb7;
    background-color: transparent;
    color: #c5c6c7;
  }

  /* Anzeigen des Menü-Buttons in mobilen Ansichten */
  @media screen and (max-width: 768px) {
    .nav-toggle {
      display: block;
    }

    nav.active ul {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    nav ul li {
      margin: 10px 0;
    }
  }


  /* Footer-Stile */
  footer {
    background-color: #0b3d3d;
    padding: 20px;
    text-align: center;
  }

  footer p {
    color: #c5c6c7;
  }
