body {
	background-color: black;
	background-image: radial-gradient(rgba(0, 150, 0, 0.75), black 120%);
	height: 100vh;
	margin: 0;
	overflow: hidden;
	padding: 2rem;
	color: white;
	font: 1.3rem 'Major Mono Display', monospace;
	text-shadow: 0 0 5px #C8C8C8;
}

body::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.3) 2px, transparent 4px, transparent 4px);
	pointer-events: none;
}

::selection {
	background: #0080FF;
	text-shadow: none;
}

pre {
	margin: 0;
}

main {
	margin: 3em;
}

.container {
	display: flex;
	flex-flow: row wrap;
}

header {
	display: flex;
	align-items: center;
	gap: 0px 30px;
	justify-content: center;
}

.container > * {
  padding: 10px;
  flex: 1 100%;
}

.profile {
	width: 15vh;
	height: auto;
	border-radius: 50%;
}

.statuslol {
	display: grid;
	grid-template-columns: 4em auto;
	gap: 1em;
	margin: 1em 0;
	padding: 1em;
	border-radius: 50px;
	background-color: rgba(255, 255, 255, 0.1);
}
.statuslol_time {
	font-size: 60%;
}

footer {
	font-weight: 900;
	text-align: right;
}

@media all and (min-width: 600px) {
  .aside { flex: 1 0 0; }
  .container { width: 100%; }
}

@media all and (min-width: 800px) {
  .main    { flex: 3 0px; }
  .aside-1 { order: 1; }
  .main    { order: 2; }
  .aside-2 { order: 3; }
  .footer  { order: 4; }
  .container { width: 60%; }
}

footer p::after {
  content: "_";
  width: 15px;
  height: 21px;
  background: #5caf5c;
  display: inline-block;
  animation: cursor-blink 1.5s steps(2) infinite;
}

@keyframes cursor-blink {
  0% {
    opacity: 0;
  }
}

