body, html {
	height: 100%;
	margin: 0;
	font-family: "Roboto", sans-serif;
	}

	#container {
	display: flex;
	flex-direction: column;
	height: 100%;
	}

	#header {
	background-color: #000000;
 	display: flex;
 	align-items: center;
 	padding-left: 9%;
 	padding-top: 1%;
	padding-bottom: 1%;
 	gap: 5px;
 	color: #fff;
  	}

	#header img {
 	width: 120px;
 	}

	#header .text {
  	font-size: 1.2rem;
 	font-weight: normal;
 	letter-spacing: 0,5px;
 	line-height: 1.6rem;
	}

 	#main {
    	display: flex;
    	flex: 1; 
  	}

	#content {
	width: 80%;
    margin-left: auto;
    margin-right: auto;
	padding: 0px;
	font-size: 1rem;
	color: #0c202f;
	line-height: 1.6rem;
	}

  	.column {
    	flex: 1; 
    	display: grid;
   	place-items:center; /* Zentriert Text in der Spalte */
    	text-align:center;
    	color:#fff;
    	font-size:2.5rem;
	font-weight: bold;
    	padding:0px; /* Innenabstand für Klickbarkeit */
 	 }

	h1 {
	font-size:1rem;
	}

   	a {
     	color:#fff;
     	text-decoration:none;
   	}

	#footer {
	background-color:#000000;
	padding:20px; 
	color:#fff; 
	text-align:center; 
	font-size: 0.9rem;
	}

   
   	@media (max-width:768px) {
     	#header {
       	flex-direction: column; /* Vertikale Anordnung auf kleinen Bildschirmen */
      	align-items:center; 
       	font-size:0.5rem; 
       	gap:10px; 
       	text-align: center;
	padding-left:0;
       	padding-top: 3%;
    	padding-bottom: 3%;
    	}

	#header img {
    	width: 100px;
 	}

	#header .text {
    	font-size: 1.0rem;
    	font-weight: normal;
    	line-height: 1.4rem;
  	}

	

	#main {
       	flex-direction: column; /* Vertikale Anordnung der Spalten */
       	width:auto; 
       	height:auto; 
     	}

	#content {
	width: 90%;
     	margin-left: auto;
     	margin-right: auto;
	padding: 0px;
	font-size: 0.9rem;
	color: #0c202f;
	}

     	.column {
       	font-size:1.2rem; /* Kleinere Schriftgröße */
       	padding:20px; 
       	width:auto; 
       	min-height:auto; 
       	display:flex; /* Flexbox für bessere Ausrichtung */
       	justify-content:center; 
       	align-items:center;
     	}
   	}

/* === Responsive Navigation === */
.navbar {
  background-color: #111;
  padding: 10px;
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  padding-left: 9%;
}

.menu li {
  position: relative;
}

.menu > li {
  margin-right: 20px;
}

.menu a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
}

.menu a:hover {
  background-color: #222;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 160px;
}

.submenu li a {
  padding: 10px;
}

.dropdown:hover .submenu {
  display: block;
}

/* Mobile Styling */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #111;
  }

  .menu.open {
    display: flex;
  }

  .menu li {
    width: 100%;
  }

  .submenu {
    position: static;
  }

  .dropdown:hover .submenu {
    display: none;
  }

  .dropdown.open .submenu {
    display: block;
  }
}

