header {
	text-align: center;
}

.titlelink {
	display: inline-block;
}
.titlelink > * {
	margin-top: 0px;
	margin-bottom: 0px;
}

#generalConsentDiv {
	background-color: #F6F6F6;
	border: 1px gray solid;
	padding: 10px;
}

.buttonbar {
	display: flex;
	gap: 10px;
}
.buttonbar > * {
	flex-grow: 1;
}

/* Language Flags */
#lang-en {
	background: url('../img/flags.png') no-repeat;
	background-position: 0 -11px;
}
#lang-de {
	background: url('../img/flags.png') no-repeat;
}
.lang-flags {
	display: inline-flex;
	gap: 5px;
	float: right;
}
.lang-flags > * {
	overflow: hidden;
	margin-top: 4px;
	bottom: 0px;
	width: 16px;
	height: 11px;
	text-indent: -9000px;
}

/* Mobile Device Adjustments */
@media only screen and (max-width: 620px) {
	#container {
		margin-top: 10px;
	}
	#logolink {
		width: 100%;
	}
}
@media only screen and (max-width: 500px) {
	#container {
		margin-top: 0px;
	}
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
	#generalConsentDiv {
		background-color: rgba(60,60,60,1);
	}
}
