<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
	background-size: cover;
	background-color: #1F1F1F;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}


h1 {
	font-family: 'Impact';
	color: #FFFFFF;
	font-size: 40px;
}

h2,h3,h4,h5,h6 {
	font-family: 'Corbel';
	color: #FFFFFF;
	font-size: 30px;
	text-decoration: underline;
}

p, li, ul, ol {
	font-family: 'Corbel';
	color: #FFFFFF;
	font-size: 20px;
	display: block;
}

q {
	font-family: 'Corbel';
	quotes: "Â«" "Â»" "â€¹" "â€º";
	color: #FFFFFF;
	font-size: 20px;
	display: block;
}

button {
	font-family:'Corbel';
	padding: 10px 20px;
	border: none;
	border-radius: 12px;
	background: #FFFFFF;
	color: #000000;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0,0,0, .1);

}

button:hover {
	background: #8B00FF;
	cursor: pointer;
	color: #FFFFFF;
	transition: color .3s;
	transition: background-color .3s;
	text-decoration: underline;
}

input {
	width: 240px;
	height: 30px;
	border-radius: 30px;
}

header {
	background-color: ;
	color: #FFFFFF;
	padding: 10px;
}

nav {
	background-color: ;
	font-size: 36px;
	padding: 10px;
	text-transform: uppercase;
	text-align: right;
	align-items: center;
}

nav a {
	text-decoration: none;
	padding: 8px 8px;
	display: inline-block;
	color: #FFFFFF;
	transition: color .3s;
}

nav img {
	text-decoration: none;
	padding: 8px 8px;
	display: inline-block;
	margin-top: -10px;
	float: left;
	cursor: pointer;
}

nav a:hover {
	color: #8B00ff;
	text-decoration: underline;
}

.navigator-bar {
	color: #FFFFFF;
	font-family: 'Impact';
	background-color: #444444;
	position: sticky;
	top: 0px;
	width: 100%;
}

.navigator-bar:hover {
	color: #8B00ff;
	transition: color .3s;
}
	

video {
	border: 5px solid #FFFFFF; 
	border-radius: 5px;
	width: 60%;
	height: 60%;
	display: block;
	margin: 0 auto;
}

video:fullscreen {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border: none;
	border-radius: none;
}

video::backdrop {
	background-color: black;
	background: rgba(0, 0, 0, 1); /*verdunkelt hintergrund zu 100%, auch wenn hintergrund eh nicht sichtbar weil vollbild*/
}

dialog {
	background-color: red;
	border: none;
	border-radius: 8px;
	padding: 24px 32px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /*verdunkelt hintergrund um 30%*/
	font-family: sans-serif;
}

dialog::backdrop {
	background: rgba(0, 0, 0, 0.6); /*verdunkelt hintergrund um 60%*/
}

menu {
	display: flex;
	gap: 12px;
	margin-top: 16px;
	justify-content: flex-end;
}

.body-container {
	text-align: center;
}

.toolbar {
	margin: 8px 0;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.hidden-file-input {
	display: none;
}

table {
	border: 3px solid #FFFFFF;
	border-collapse: collapse;
	width: 100%;
	max-width: 600px;
	background: #FFFFFF;
	box-shadow: 0 0 10px rgba(0,0,0,.05);
	table-layout: fixed;
}

th,td{
	border: 1px solid #FFFFFF;
	padding: 8px;
}

th {
	background: #BBBBBB;
	padding: 18px;
}

th:hover {
	background: #FFFFFF;
	cursor: pointer;
	outline: 2px solid #8B00ff;
}

td[contenteditable=true]{
	cursor: text;
	background: #BBBBBB;
}

td[contenteditable=true]:hover{
	outline: 2px solid #FFFFFF;
	background: #DDDDDD;
	cursor: pointer;
}

td[contenteditable=true]:focus{
	outline: 2px solid #8B00ff;
	background: #FFFFFF;
	cursor: text;
}

#tipp {
	display: none;
	margin-top: 16px;
	color: #FFFFFF;
	font-size: 14px;
	max-width: 600px;
}

code:hover {
	color: #8B00ff;
	transition: 0.3s;
	cursor: pointer;
}

#Uhrzeit {
	font-family: 'Impact';
	color: #FFFFFF;
	font-size: 75px;
}

#Uhrzeit:hover {
	color: #8B00ff;
	cursor: pointer;
}

#Datum {
	font-family: 'Impact';
	color: #FFFFFF;
	font-size: 75px;
}

#Datum:hover {
	color: #8B00ff;
	cursor: pointer;
}</pre></body></html>