/* Reset & Basiseinstellungen */


body {
  background-color: #1b1b1b;
  color: #f2f2f2;
  line-height: 1.6;
 
}

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #2a2a2a;
  padding: 40px;
  border: 1px solid #4a0000;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.1);
}

/* Titel */
.title {
  font-size: 3rem;
  color: #ff3c3c;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 4px #900;
}

/* Intro */
.intro p {
  font-size: 1.2rem;
  text-align: center;
  color: #ddd;
  margin-bottom: 30px;
}

/* Navigation */
.navigation ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.navigation a {
  text-decoration: none;
  color: #ff3c3c;
  font-weight: bold;
  padding: 10px 18px;
  border: 2px solid #ff3c3c;
  border-radius: 4px;
  transition: 0.3s;
  background-color: transparent;
}

.navigation a:hover {
  background-color: #ff3c3c;
  color: #1b1b1b;
}

/* Sektionen */
section {
  margin-bottom: 50px;
}

section h2 {
  font-size: 2rem;
  color: #ff5e5e;
  margin-bottom: 10px;
  border-bottom: 1px solid #ff5e5e;
  padding-bottom: 5px;
}

section p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Extras: Linien, Code-Vibe */
hr {
  border: 0;
  height: 1px;
  background: #ff3c3c;
  margin: 40px 0;
}


/* Responsive */
@media (max-width: 600px) {
  .title {
    font-size: 1.75rem;
  }

  .navigation ul {
    flex-direction: column;
    align-items: center;
  }

  .navigation a {
    width: 100%;
    text-align: center;
  }
}
