@font-face {
  font-family: console;
  src: url('../fonts/DAGGERSQUARE.otf');
}

* {
	box-sizing: inherit;
	text-shadow: inherit;
	font-size: inherit;
	font-family: inherit;
	transition: all 0.5s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  color: inherit;
  user-select: none;
}

*:focus {
  outline: none;
}

body {
	font-family: console;
	background: #000;
	color: #eeeeee;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	overflow: hidden;
	cursor: crosshair;
	line-height: 150%;
	font-size: 26px;
}

a {
	color: rgba(255, 255, 180, 0.8);
	cursor: pointer !important;
}

a:hover {
	color: rgba(255, 255, 230, 1.0);
	text-shadow: 0 0 12px rgba(255, 255, 230, 1.0);
}

nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 16px;
	background: rgba(100,100,100,0.3);
}

footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px;
  width: 250px;
	border-top: 1px solid rgba(100,200,255,0.2);
	padding-bottom: 3px;
	background: rgba(100,100,100,0.3);
}

button {
	display: inline-block;
	min-width: 120px;
	color: green;
	border-radius: 8px;
	border: 2px solid gray;
	cursor: pointer;
	padding: 12px;
	background: black;
}

button:hover {
  border-color: yellow;
  color: yellow;
  background: rgba(0,0,80,0.5);
}

input[type=text] {
	background: #663300;
	border: 2px solid #aa9922;
	color: yellow;
	padding: 4px;
	width: 100%;
}

.notice {
	opacity: 0.75;
	position: absolute;
	left:0;
	right:0;
	top: 300px;
	width: 640px;
	padding: 40px;
	margin-left: auto;
	margin-right: auto;
	background: rgba(0,0,0,0.34);
	border: 4px solid red;
	font-size: 90px;
	line-height: 200px;
	text-align: center;
}

#sidebar {
	position: absolute;
	right: 32px;
	top: 32px;
}

#sidebar > div {
	text-align: center;
	width: auto;
	font-size: 20px;
	padding: 16px;
	background: black;
	border: 4px solid gray;
	border-radius: 64px;
	min-height: 64px;
	margin-bottom: 32px;
}

#menu-screen {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	background: black;
	border: 10px solid gray;
	border-radius: 32px;
	height: 700px;
	width: 700px;
	overflow: auto;
}

h1 {
	font-size: 60px;
	padding: 8px;
	margin: 0;
	line-height: 200%;
	background: rgba(100,100,100,0.3);
	text-align: center;
}
