/* CSS Document */

html {
	width: 100%;
    min-height: 100%;
    background-color: rgb(20,20,20);
    color: greenyellow;
	font-size: 1.2em;
}

body {
	font-family: 'IBM Plex Mono', monospace;
}

pre { 
	width: 95%;
    display: block;
}

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

h1 {
	font-size: 2em;
	display: inline;
}

div {
	padding: 3em;
}

span.cursor {
	display: inline-block;
    width: 0.8em;
    height: 1.2em;
    background-color: greenyellow;
    vertical-align: text-bottom;
	opacity: 1;
	transition: opacity 0.1s;
}

span.cursor.cur0 {
	height: 1.8em;	
}

span.cursor.hide {
	opacity: 0;
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
