* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	cursor: default !important;
}

body {
	min-height: 100vh;
	width: 100vw;
	overflow-x: hidden;
	display: flex;
	justify-content: start;
	align-items: end;
	font-family: "monospace", monospace;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
}

.terminal {
	min-height: 100vh;
	width: 100vw;
	background-color: #1a1a1a;
	color: #f8f8f2;
	padding-bottom: 0.2%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding-top: 50px
}

.terminal-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	flex: 1;
	padding-bottom: 30px;
}

.terminal-prompt {
	display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding-bottom: 10px;
	padding-top: 10px;
	padding-left: 10px;
	background: rgb(26,26,26);
	background: linear-gradient(0deg, rgba(26,26,26,0.9416141456582633) 0%, rgba(26,26,26,0) 100%);
}

@keyframes terminal-cursor-animation {
	  50% {
    opacity: 0;
  }
}

.terminal-cursor {
	width: 10px;
	height: 20px;
	background-color: white;
	animation-name: terminal-cursor-animation;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: steps(1, end);
	margin-left: 5px;
	margin-top: 2px;
}

.text-block {
	text-align: center;
	max-width: 820px;
	padding: 0 10px;
	align-self: center;
}

.justify-center {
	justify-content: center;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.flex {
	display: flex;
}

.gap {
	gap: 100px;
}

.ascii-pic {
font-size: 5px;
line-height: 7px;
}

.mw-text {
	max-width: 40%;
}

.horizontal-line {
	border-bottom: 2px solid #f8f8f2;
	width: 100%;
}

@media screen and (max-width: 600px) {
	.terminal-prompt {
		font-size: 14px;
	}

	body {
		font-size: 14px;
	}

	.gap {
		gap: 30px;
	}

	.text-block {
		max-width: 360px;
	}	

	.text-block:not(.force-center) {
		text-align: left;
	}

	.info-block,
	.info-block > div {
		width: 100%;
		justify-content: space-between;
	}

	.terminal {
		padding-top: 20px;
	}

	.terminal-cursor {
		width: 8px;
		height: 14px;
		margin-top: 1px;
		margin-left: 2px;
	}
}
