body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  color: #333;
}

.centered {
	display: flex;
	justify-content: center;
	padding: 2rem;
}

.window {
	width: 90%;
	max-width: 800px;
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
}
/*NAVIGATIONSLEISTE*/
.nav {
	width:90%;
	margin:auto;
	display: flex;
	overflow-x: auto;
	white-space: nowrap;
	background: #f8f8f8;
	padding: 10px;
	gap: 10px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	border-radius:15px;
	border-bottom-left-radius:0px;
	border-bottom-right-radius:0px;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
	flex: 0 0 auto;
	text-decoration: none;
	padding: 6px 12px;
	background: #e0e0ff;
	border-radius: 6px;
	font-weight: bold;
	display: inline-block;
	color: #000;
}

.content {
	width:90%;
	background: #f8f8f9;
	margin:auto;
}