html, body {

	margin: 0;
	min-height: 100vh;
	background: #010401;
	background-image:
	
		linear-gradient(
			to bottom,
			rgba(0,255,0,0.05) 1px,
			transparent 1px
		);
	
	background-size: 100% 3px;
	color: #00ff00;
	font-family: "Courier New", monospace;
	font-size: 14px;
	text-shadow: 0 0 3px rgba(0,255,0,0.6), 0 0 9px rgba(0,255,0,0.3);
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
}

#app {
	width: min(90vw, 760px);
	text-align: center;
}

#logoCanvas {
	width: min(70vw, 300px);
	height: min(70vw, 300px);
	margin-bottom: 28px;
	image-rendering: auto;
}

#content {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	justify-content: space-between;
	text-align: left;
}

#terminal {
	flex: 1;
	line-height: 1.45;
}

#terminalText {
	display: inline;
	white-space: pre-wrap;
	margin: 0;
}

#cursor {
	opacity: 1;
}

#cursor.blink {
	animation: blink 1s steps(1) infinite;
}

@keyframes blink {
	50% { opacity: 0; }
}

#commands {
	margin-top: 20px;
}

#commands a {
	display: inline-block;
	background: transparent;
	color: #00ff00;
	border: 0;
	font: inherit;
	padding: 4px 0;
	cursor: pointer;
	text-align: left;
	text-decoration: none;
	font-weight: bold;
}

#commands a#infoButton i {
	position:relative;
	top:2px;
	font-style:normal;
	margin:0 -3px;
}

@media (hover: hover) and (pointer: fine) {
	#commands a:hover span {
		background: #00ff00;
		color: #000;
	}
}

#coverWrapper {
	position: relative;
	width: 200px;
	height: 200px;
	transition: box-shadow 1.5s ease;
}

#coverCanvas,

#noiseCanvas {

	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	height: 200px;
	image-rendering: pixelated;
	image-rendering: crisp-edges;

}

#noiseCanvas {

	pointer-events: none;

}

#screenNoise {

	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.15;

}

#pageGlitchCanvas {

	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 100000;
	display: none;

}

@media (max-aspect-ratio: 1/1) {
	body {
		align-items: flex-start;
		padding-top: 24px;
		padding-bottom: 24px;
	}

	#content {
		flex-direction: column;
		align-items: center;
	}

	#terminal {
		width: 100%;
	}
	
	#commands {
		text-align: center;
	}

	#coverWrapper {
		margin-top: 12px;
	}
	
	#logo {
		width: min(55vw, 220px);
		margin-bottom: 22px;
	}
}