body {
	background: black;
	font-family: "Consolas";
	margin: 0;
	min-height: 100vh;
}
.signature {
	position: fixed;
	color: white;
	inset: auto 5px 5px auto;
}
.red {
	color: red;
}
.white {
	color: white;
}
/* index.sh */
.bash-logo-container {
	min-height: 100vh;
	display: grid;
	place-items: center;
	place-content: center;
	grid-template-columns: repeat(3, min-content);
	grid-gap: 20px;
	cursor: default;
	user-select: none;
	pre {
		color: green;
	}
}
