* {
  user-select: none;
  cursor: none !important;
}
body, html {
	margin: 0;
	background: #333;
	overflow: hidden;
	height: 100vh;
}
#content {
    width: 100vw;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    position: fixed;
    left: 0;
    top: 0;
}
#console_area {
    opacity: 0.3;
    pointer-events: none;
    display: block;
    user-select: none;
    background: transparent;
    color: #3F3;
    text-shadow: 0 0 2px green;
    width: calc(100% - 30px);
    height: calc(100% - 60px);
    padding: 15px;
    padding-top: 45px;
    font-size: 10pt;
    font-family: monospace;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    overflow: hidden;
}
#controls {
    width: 100vw;
    height: 20vh;
    font-size: 20pt;
    color: #3F3;
    text-shadow: 0 0 5px green;
    background-color: #222;
    position: fixed;
    left: 0;
    bottom: 0;
}
#menu_btns {
    table-layout: fixed;
    width: 100%;
    height: 100%;
    text-align: center;
}
#menu_btns td:active {
    background-color: #111; 
}
#coins {
  overflow: auto;
  overflow-x: hidden;
  overflow-y: auto;
  height: 20pt;
  margin: 0;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  font-family: monospace;
  font-variant: small-caps;
  padding: 5px;
  color: #0F0;
  pointer-events: none;
  max-width: calc(100% - 50px);
}
#menu_holder {
  height: calc(90% - 30px);
  width: calc(90% - 30px);
  padding: 15px;
  position: fixed;
  left: 5vw;
  top: 5vh;
  background-color: #2A2A2A;
  border-radius: 1px;
  box-shadow: 0 0 5px #000;
  font-family: monospace;
  color: #3F3;
  text-shadow: 0 0 2px green;
}
.exit, #exit {
  float: right;
  color: #F33;
  text-shadow: 0 0 2px #F00;
  transition: font-weight 80ms linear;
}
.exit:hover, #exit:hover {
  font-weight: bold;
}
#buffs {
  margin: 0;
  position: absolute;
  z-index: 3;
  right: 0;
  top: 0;
  font-family: monospace;
  font-size: 10pt;
  font-variant: small-caps;
  padding: 5px;
  color: #AFA;
}
.opt {
  border: none;
  outline: none;
  color: #333;
  background-color: #3F3;
  padding: 5px;
  float: right;
  font-family: monospace;
}
.opt:active {
  filter: brightness(75%);
}
small {
  display: block;
  text-align: left;
  padding: 5px;
}
a {
  color: #FFF !important;
}
.menu {
  overflow: auto;
}
h2 {
  font-size: 15pt;
  margin-top: 15px;
  margin-bottom: 3px;
}
#mouse {
  pointer-events: none;
  color: #0A0;
  position: fixed;
  left: -100px;
  top: -100px;
  z-index: 999;
  font-size: 15pt;
}