/* Allgemeine Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
  }
  
  /* Header und Navigation */
  header {
    background: #111;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo h1 {
    color: #0ff; /* Neon-Farbton */
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  .rules{
    width: 75%;
    margin: auto auto;
  }
  .nav-links li {
    margin: 0 15px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #0ff;
  }
  
  /* Burger Menü Styles */
  .burger {
    display: none;
    cursor: pointer;
  }
  
  .burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #333);
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  
  .hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .hero-images img {
    width: 300px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  }
  
  /* Team Section */
  .team {
    padding: 60px 0;
    text-align: center;
  }
  
  .team h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  

/* Team-Mitglieder Box */
.team-member {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
}
  
  /* Bilder in Team-Box */
  .team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  .team-member h3 {
    margin-bottom: 10px;
  }
  
  /* Content Section für Impressum, Forum, Wiki */
  .content {
    padding: 60px 20px;
    text-align: center;
  }
  
  /* Footer */
  footer {
    background: #111;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      right: 0;
      height: 100vh;
      top: 80px;
      background-color: #111;
      flex-direction: column;
      width: 50%;
      align-items: center;
      transform: translateX(100%);
      transition: transform 0.5s ease-in;
    }
    
    .nav-active {
      transform: translateX(0%);
    }
    
    .nav-links li {
      opacity: 0;
    }
    
    .nav-links li a {
      font-size: 1.5rem;
    }
    
    .burger {
      display: block;
    }
    .team-container {
      flex-direction: column;
      align-items: center;
    }
  
    .team-member {
      width: 80%; /* Breiter für bessere Darstellung */
    }
  }
  
  /* Animations für nav-Links */
  @media (max-width: 768px) {
    .nav-links li {
      opacity: 0;
    }
    
    .nav-links.nav-active li {
      opacity: 1;
      transition: opacity 0.5s ease-in;
    }
  }
  
  /* Keyframes für die Link-Animation */
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Animation für Bilder beim Hover */
img {
    transition: transform 0.3s ease;
  }
  
  img:hover {
    transform: scale(1.2);
  }
.logo{
    width: 35%;
}
.bold{
    font-weight: 120%;
}
#chat-box{
  width: 70%;
  margin: auto auto;
  font-size: larger;
  text-align: left;
}
.float-left{
  float: left;
}
hr{
  border-color:#1a1a1a
}
td{
  min-width: 300px;
}