*:focus, *:active {
  outline: 0;
}

body, html {
  width: 100%;
  height: 100%;
  margin: 0;
}

.hacks:after {
  content: "|";
}

* {
  box-sizing: border-box;
}

body {
  background-color: black;
  color: lime;
  font-family: Menlo, Monaco, Consolas, monospace;
  font-size: 10pt;
  overflow: hidden;
}

.bar {
  border: solid 1px lime;
  bottom: 0;
  left: 0;
  background-color: black;
  opacity: 0.8;
  padding: 0.2rem;
  border-bottom: none;
  position: fixed;
}

.menu-wrapper {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu {
  width: 960px;
  border: solid 1px lime;
  background-color: black;
  max-height: 100vh;
  overflow: auto;
  margin: 0 auto;
  opacity: 0.9;
  padding: 1rem;
  color: lime;
  display: none;
  font-family: Menlo, Monaco, Consolas, monospace;
}
.menu h1, .menu h2, .menu h3, .menu h4, .menu h5, .menu h6 {
  margin-top: 0;
  font-weight: inherit;
}

p a {
  color: lime !important;
}

.block {
  display: block;
  width: 100%;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.f-row {
  margin: 0.5rem 0;
}

.f-container {
  display: flex;
  flex-flow: row nowrap;
}
.f-container .f-half {
  flex-basis: 50%;
}

input {
  border: solid 1px lime;
  color: lime;
  font-family: Menlo, Monaco, Consolas, monospace;
  padding: 0.5rem;
  background: black;
}
input:focus, input:active {
  outline: 0;
}

button {
  border: solid 1px lime;
  padding: 0.5rem;
  background: black;
  color: lime;
  font-family: Menlo, Monaco, Consolas, monospace;
  transition: transform 100ms;
}
button:hover {
  box-shadow: 0 0 0 1px lime;
  transform: scale(1.03);
  cursor: pointer;
}
button:active {
  transform: scale(1.02);
}
