@font-face {
    font-family: 'StickNoBills-Regular';
    src: url('../res/fonts/StickNoBills-Regular.ttf') format('truetype');
}

* {
    padding: 0;
    margin: 0;
}

html {
    overflow-y: scroll;
    font-size: 12pt;
}

html, body {
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0);
	color: rgb(255, 255, 255);
	font-size: 100%;
}

#side {
	width: 100%;
	height: 100%;
	/**background-image: url(hintergrund.jpg);
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;**/
	display: flex;
	color: rgb(0, 255, 0);
	font-family: monospace;
	overflow: hidden;
}

#matrix {
    position: absolute;
    display: block;
}

#box {
	width: fit-content;
	/**height: 20%;**/
	margin: auto;
	color: rgb(255, 255, 255);
	font-family: 'StickNoBills-Regular', sans-serif;
	background-color: rgba(0, 0, 0, 0.8);
	border: 2px solid rgb(0, 0, 0);
	border-radius: 4px;
	box-shadow: 2px 2px 18px rgba(0, 0, 0, 0.5);
	display: flex;
	text-align: center;
	position: relative;
	padding: 1% 5% 1% 5%;
	backdrop-filter: blur(2px);
}

#text {
	margin: auto;
	font-size: 500%;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}