@import url('fonts.css');

body::after {
	content: '';
	position: fixed;
	top: 0;
	right: 0;
	pointer-events: none;
	bottom: 0;
	left: 0;
	background-image:
		linear-gradient(to top, rgba(255, 255, 255, 0.2) 33.33333%, rgba(255, 255, 255, 0.4) 33.33333%, rgba(255, 255, 255, 0.4) 66.66666%, rgba(255, 255, 255, 0.6) 66.66666%),
		linear-gradient(to right, rgba(255, 0, 0, 0.7) 33.33333%, rgba(0, 255, 0, 0.7) 33.33333%, rgba(0, 255, 0, 0.7) 66.66666%, rgba(0, 0, 255, 0.7) 66.66666%);
	background-size: 3px 3px;
	mix-blend-mode: multiply;
}

body {
	background: #fff;
	color: #000;
	text-shadow: 1px 0 rgba(255, 0, 0, 0.9), -1px 0 rgba(0, 0, 255, 0.9);
	padding: 10px;
	font-family: 'Source Code Pro', monospace;
}

h1 {
	font-size: 60px;
	font-weight: 200;
}


div {
	color: #000;
}


#mobile-input-field {
	position: fixed;
	bottom: 10px;
	left: 50%; 
	transform: translateX(-50%);
	width: calc(100% - 55px);
	background-color: #000000ee;
	padding: 12px;
	padding-top: 10px;
	font-size: 22px;
	color: #fff;
	border: none; 
	outline: none;
	font-family: 'Source Code Pro', monospace;
	text-shadow: 1px 0 rgba(255, 0, 0, 0.9), -1px 0 rgba(0, 0, 255, 0.9);
}

input:focus, input:active {
    background-color: #000000ee !important;
    outline: none !important;
}

input {
	transition: none !important;

    background-color: #000000ee !important; /* Or any other color you want */
}
input[type="text"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #000000ee;
}


/* input placeholder */
#mobile-input-field input, input::placeholder {
	font-family: 'Source Code Pro', monospace;
	font-size: 19px;
	letter-spacing: 4px;
	opacity: .3;
	color: white
}

/* spacer to keep space on scroll for text input */
.spacer {
	height: 75px; width: 100%; 
}


.command-input {
	font-size: 22px;
	display: inline-block;
	margin-top: 5px;
	margin-bottom: 5px;
	font-weight: bold;
}




#matrix {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden !important;
}

.hide {
	display: none;
}

#matrix-canvas {
	width: 100%;
	height: 100%;
}


body pre {
	font-size: 20px !important;
	line-height: 30px !important;
	white-space: pre-wrap;
	word-wrap: break-word;
	overflow-wrap: break-word;
}