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

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

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

	#header img {
 	width: 95px;
 	}

	#header .text {
  	font-size: 1.2rem;
 	font-weight: normal;
	}

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

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

  	.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 */
 	}
 	 
 	img {
  	max-width: 250px;
  	height: auto;
  	padding-top: 10%;
	}

	h1 {font-size:1rem;}
	h2 {font-size:1rem;}
	h3 {font-size:1rem;}
	h4 {font-size:1rem;}

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

	#footer {
	background-color:#000;
	padding:20px; 
	color:#fff; 
	text-align:center; 
	font-size: 0.9rem;
	}
	
	#footer a {
    color: #fff;
    text-decoration: none;
    }
 
   	@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: 90px;}

	#header .text {
    font-size: 0.9rem;
    font-weight: normal;
  	}

	#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: 1rem;
	color: #0c202f;
	}

	.column {
    font-size:1.5rem; /* 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: 8%;
}

.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;
  }
}

