body {
	background-color: #262e31;
	font-family: Consolas, Courier, monospace;
	font-size: small;
	text-align: center;
}

h1, h2, h3, p, ul, sub, a {
	color: azure;
	text-shadow: 0 0 2px aliceblue;
}

ul, ol {
	list-style: none;
}

a {
	cursor: pointer;
	text-decoration: dotted underline;
}

a:visited {
	color: azure;
}

a:hover {
	color: cadetblue;
	font-weight: bold;
	text-decoration: underline;
	text-shadow: 0 0 25px aliceblue;
}

#main {
	display: none;
	margin: auto;
	overflow-y: auto;
	padding: 10px;
	text-align: left;
	width: 95%;
	z-index: 1;
}

#loading {
	color: lime;
	display: block;
	margin: auto;
	overflow-y: auto;
	padding: 10px;
	text-align: left;
	text-shadow: 0 0 2px aliceblue;
	width: 95%;
}

.divider {
	color: darkturquoise;
	margin: auto;
	text-align: left;
	text-shadow: 0 0 2px cyan;
}

.list-header {
	color: gold;
	text-shadow: 0 0 2px goldenrod;
}

.list-marker {
	color: dodgerblue;
	text-shadow: 0 0 2px aquamarine;
}

#frieren {
	display: none;
	text-align: center;
	margin-left: -10%;
}

#frieren li {
	font-size: xx-small;
}

.fake-cursor {
	animation: blink 1s steps(2, start) infinite;
	color: azure;
	display: inline-block;
	font-weight: bold;
	width: 10px;
}

@keyframes blink {
	0%, 50% {
		opacity: 1;
	}
	50.01%, 100% {
		opacity: 0;
	}
}

.window {
	border: 5px ridge azure;
	border-radius: 10px;
	box-shadow: 2px 2px 5px black;
	margin: auto;
	overflow-y: auto;
	width: 90%;
}

.title-bar {
	align-items: center;
	background: linear-gradient(to bottom, #0078d7, #005a9e);
	color: azure;
	display: flex;
	justify-content: space-between;
	padding: 5px 10px;
	user-select: none;
	width: initial;
}

.title {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-weight: bold;
}

.window-buttons {
	display: flex;
	gap: 8px;
	margin-left: -10%;
}

.btn {
	color: azure;
	background: transparent;
	border: none;
	cursor: pointer;
	position: relative;
}

.btn.minimize:hover {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 5px;
}
.btn.maximize:hover {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 5px;
}
.btn.close:hover {
	background: red;
	border-radius: 5px;
}

#matrix-canvas {
	height: 100%;
	left: 0;
	opacity: 0.4;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.content {
	overflow: hidden;
	position: relative;
}