/* Allgemeine Stile */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFFACD;
}

header {
  background-color: #dcbf85;
  color: white;
  padding: 10px 20px;
  text-align: center;
}

main {
  margin: 20px; /* Standardmäßiger Abstand */
  margin-left: 220px; /* Platz für die Navigation */
  padding: 10px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}

h1 {
  color: #8b635c;
  font-size: 16pt;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-top: 10pt;
}

h2 {
  color: #8b635c;
  font-size: 14pt;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-top: 10pt;
}

h3 {
  color: #800040;
  font-size: 11pt;
  font-weight: bold;
  margin-bottom: 0px;
  margin-top: 10px;
  margin-left: 0px;
}

h4 {
  color: #8b635c;
  font-size: 15pt;
  font-weight: normal;
  margin-bottom: 0px;
  margin-top: 10px;
  text-decoration: none;
}





a {
  text-decoration: none;
  color: rgb(170, 85, 34);
}

ul {
	list-style: disc inside;
	padding: 0;
	margin: 0;
}

/* Navigation */
.side-nav {
  background-color: #dcbf85;
  position: fixed;
  top: 60px; /* Höhe des Headers */
  left: 0;
  width: 200px;
  height: calc(100% - 60px);
  padding: 10px;
}

.side-nav ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
}

.side-nav li a {
  padding: 10px;
  display: block;
}

.topnav {
  background-color: #dcbf85;
  display: none; /* Versteckt für große Bildschirme */
}

.topnav ul {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	list-style: none;
}

.topnav li a {
  padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .side-nav {
    display: none; /* Versteckt für mobile Geräte */
  }

  .topnav {
    display: block; /* Zeigt Top-Navigation für mobile Geräte */
  }

  main {
    margin-left: 10px; /* Weniger Abstand für mobile Geräte */
    margin-right: 10px;
  }
}
