html {
	height: 100%;
}

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding-top: 60px; /* Offset for fixed banner and toolbar */
}

ul{
	list-style-type: none;
	margin: 0;
  	padding: 0;
}

.button {
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease, color 0.3s ease;
	background-color: #690b45;
	border: 2px solid #fff;
	color: #fff;
}

.button:hover {
	border: 2px solid #690b45;
	background-color: #fff;
	color: #690b45;
}

.hint{
	font-size: 10px;
	color: #919191;
}

.link{
	color: blue;
	text-decoration: underline;
	cursor: pointer;
}

.banner {
	width: 100%;
	height: 60px;
	background-color: #690b45;
	display: flex;
	justify-content: left;
	align-items: center;
	color: white;
	font-size: 36px; /* Large font size */
	font-weight: bold;
	position: fixed;
	top: 0;
	left: 0;
	border-bottom: 5px solid #c6c2b6; /* Narrow grey line below toolbar */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000; /* Ensure it stays on top */
}



.footer {
	position: fixed;
	bottom: 0px;
	min-height: 25px; /* Example fixed height for the footer */
	width: 100%;
	background-color: #E8E8E8;
	border-top: 5px solid #c6c2b6; /* Narrow grey line above toolbar */
	box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
	font-size: 11px;
	z-index: 1999;
	text-align: center;
	padding: 5px;
}