html, body {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

body {
	font-family: 'Fira Code', monospace;
	color: white;
	background: #333;
}

a {
	color: white;
	text-decoration: none;
}

.meta-hidden {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	overflow: hidden;
}

.console {
	position: absolute;
	display: flex;
	flex-direction: column;
	top: 0;
	left: 0;
	width: 500px;
	height: 300px;
	color: #eee;
	z-index: 100;
	background: #333;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

@media (max-width: 700px) {
	.console {
		margin: auto;
		left: 0;
		right: 0;
		top: 50px;
		width: 80vw;
		transform: none !important;
	}
}

.console .bar {
	height: 24px;
	background: #333;
	cursor: move;
}

.console .inner {
	flex: 1;
	padding: 10px;
	background: #111;
}

.console .date {
	color: #666;
	font-weight: bold;
}

@keyframes cursor {
	0% { opacity: 0; }
	49.99% { opacity: 0; }
	50% { opacity: 1; }
	99.99% { opacity: 1; }
}
.console .cursor {
	color: #ff9e32;
	animation: cursor 1s infinite
}

.console .prompt {
	font-weight: bold;
	color: #7AFF00;
}

.console .prompt.old {
	color: #666;
}

.console a:hover {
	background: #ed130a;
}

.console .path {
	color: #999;
}

.console p {
	user-select: none;
	margin: 2px 0;
}

.background {
	position: relative;
	width: 100vw;
	height: 100vh;
}

.gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #d14684, #fc7474);
}