body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background: linear-gradient(to bottom, #ffe6cc, #ffb3b3);
      color: #333;
    }
    header {
      background: #ff704d;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;

      position: sticky;  /* Menü bleibt oben, wenn gescrollt wird */
      top: 0;  /* Fixiert das Menü an der oberen Kante */
      z-index: 1000;  /* Menü bleibt immer oben */
    }
    .headertitle {
      font-size: 2rem;
      color: #fff;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    nav ul li {
      font-size: 1.1rem;
    }
    nav ul li a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
    }
    nav ul li a:hover {
      color: #ffffff;
      text-decoration: overline ;
    }
    main {
      padding: 40px;
    }
    section {
      background: rgba(255, 255, 255, 0.8);
      padding: 20px;
      border-radius: 20px;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    section h2 {
      color: #ff704d;
    }
    .server-status {
      padding: 20px;
      background: rgba(255, 204, 153, 0.9);
      border-radius: 20px;
      margin-top: 20px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .server-status p {
      font-size: 1.1rem;
      margin: 10px 0;
    }
    .server-status span {
      font-weight: bold;
    }
    footer {
      background: #ff704d;
      padding: 20px;
      text-align: center;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      color: #fff;
    }
    a {
  color: #8B0000; /* Dunkles Rot */
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #B22222; /* Helleres Dunkelrot beim Hover */
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
.top-bar {
  background-color: #ff704d;  /* Orange */
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 1.1rem;
  font-weight: bold;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

marquee {
  font-size: 1rem;
}
.popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #ffffff;
            padding: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            border-radius: 8px;
            text-align: center;
        }
        .popup h2 {
            color: #333;
        }

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #ff704d;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  nav ul {
    flex-direction: column;
    padding: 10px;
  }
  nav ul li {
    margin: 10px 0;
  }
  nav.active {
    display: block;
  }


}