html{
  height: 100%;
}

* {
	-webkit-touch-callout: none; 	/* iOS Safari */
	-webkit-user-select: none; 	/* Safari */
	-khtml-user-select: none; 	/* Konqueror HTML */
	-moz-user-select: none; 	/* Firefox */
	-ms-user-select: none; 		/* Internet Explorer/Edge */
 	-o-user-select: none;
	user-select: none; 		/* Non-prefixed version, currently
                                  	supported by Chrome and Opera */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	margin:0;
	padding:0;
	
}
@font-face {
	font-family: myTerm;
	src: url(BigBlue_TerminalPlus.TTF);
}
@font-face {
	font-family: mountain;
	src: url(Symbola.ttf);
}

body {
	display:flex;
	height:100%;
	justify-content:center;
	flex-direction:column;
		background:rgba(0,60,0,1);
		background: radial-gradient(center, ellipse cover, rgba(0,60,0,1) 0%, rgba(0,0,0,1) 100%);
		background: -moz-radial-gradient(center, ellipse cover, rgba(0,60,0,1) 0%, rgba(0,0,0,1) 100%);
		background: -webkit-radial-gradient(center, ellipse cover, rgba(0,60,0,1) 0%,rgba(0,0,0,1) 100%);
		background: radial-gradient(ellipse at center, rgba(0,60,0,1) 0%,rgba(0,0,0,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003c00', endColorstr='#000000',GradientType=1 );
	color:#0d0;
	font-family: myTerm;
}

#logo {
	display:flex;
	align-items:center;
	justify-content:center;
	height:10vh;
	background:#888888;
	color:#444444;
	order:0;
	text-align:center;
	font-size: calc( 2vw + 2vh );
	font-family: mountain;
	line-height:0;
}

#SiteName {
	display:none;
}

#menu {
	display:flex;
	height:5vh;
	justify-content:space-evenly;
	align-items:center;
	list-style:none;
	color:#010;
	order:1;
}

#menu a {
	display:block;
	background:#0d0;
	color:#040;
	width:10vw;
	text-align:center;
	box-shadow: 0 0 calc( (2vw + 2vh) / 0.8) #0f0;
	text-shadow: 0 0 calc( (2vw + 2ch) / 0.8) #040;
}

#screen {
	height:90vh;
	padding: calc( (2vw + 2vh) / 2 );
	padding-top: calc( 5vh + ( (2vh + 2vw ) / 2 ) );
	margin-top:-5vh;
	font-size:1.82vw;
	order:2;
	border:solid calc( ( 1vw + 1vh )  / 2) #888888;
	border-top: none;
	text-shadow: 0 0 calc( (2vw + 2vh) / 0.8) #0f0;
	overflow:auto;
}

#screen a {
	color:#0f0;
}

a {
	text-decoration:none;
}

#prompt {
	display: inline;
	max-width: 100%;
	overflow-wrap:break-word;
}

@keyframes cursorBlink {
	0% {
		color:rgba(0,221,0,0);	
		text-shadow: 0 0 0 rgba(0,250,0,0);
	}
	25% {
		color:rgba(0,221,0,1);
		text-shadow: 0 0 calc( (2vw + 2vh) / 0.8) rgba(0,250,0,1);
	}
	100% {
		color:rgba(0,221,0,0);
		text-shadow: 0 0 0 rgba(0,250,0,0);
	}
}

.cursor {
	display: inline-block;
	animation-name: cursorBlink;
	animation-iteration-count:infinite;
	animation-duration:1s;
}

#menu-trigger, label[for=menu-trigger], #footer {
	display:none;
}

p {
	margin-bottom:calc( (2vw + 2vh) / 1.6);
}
