body {background-color: black}

body::before {
	content: " ";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
 	z-index: 2;
 	background-size: 100% 2px, 3px 100%;
	pointer-events: none;
}

.identity-executable {color: #60B48A}
.working-directory {color: #94BFF3}
.comment {color: #3F3F3F}

p {
	padding: 0;
	margin: 0;

	font-family: monospace;
	font-size: 15px;
	line-height: 1.5;

	color: white;
}

.clickable {
	cursor: pointer;
}

.hidden {
	display: none;
}

.cursor {
	background-color: white;
	animation: blink 1s steps(1) infinite;
}

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

@media screen and (max-width: 600px) {
	p {
		font-size: 12px;
	}
}
