body {
  font-family: 'Arial', sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  line-height: 1.2; /* Verringert den Abstand zwischen den Zeilen */
}

header {
  background-color: #007bff;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  box-shadow: 0 4px 2px -2px gray;
  z-index: 900;
}

h1 {
  margin: 0;
}

code {
  font-size: 120%;
  font-weight: bold;
}

main {
  max-width: 1000px;
  margin: 20px auto;
  margin-top: 60px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #007bff;
  margin-top: 0;
}

ul {
  list-style: none;
  margin-left: 5px;
  padding: 0;
}

li {
	list-style: square;
  margin-bottom: 5px;
  padding-left: 2px; /* Einrückung der Listenpunkte */
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

  .nav-button {
    position: fixed;
    top: 15%;
    transform: translateY(-50%);
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
  }
  
  .menu-button {
    position: fixed;
    top: 30px;
    transform: translateY(-50%);
    padding: 10px 20px;
    background-color: #009fff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
	z-index: 1000;
  }
  
  .left-button {
    left: 10px;
  }
  .right-button {
    right: 10px;
  }  
  
  .frage {
  background-color: #cccccc; 
  border-left: 6px solid #111111; 
  padding: 12px 16px;
  margin: 12px 0;  
  margin-left: 15%;
  border-radius: 10px; 
  color: #000000;
  font-family: Arial, sans-serif;
}

.antwort {
  background-color: #cccccc;
  border-left: 6px solid #eeeeee; 
  padding: 12px 16px;
  margin: 12px 0;
  margin-right: 15%;
  border-radius: 10px;
  color: #000000;
  font-family: Arial, sans-serif;  
}



  

/* Responsive styles */
@media (max-width: 600px) {
  main {
    padding: 10px;
  }
}
