body {
  font-family: 'Inconsolata', monospace;
  /* font-family: 'Silkscreen', cursive; */
}
button, input {
  font-family: 'Inconsolata', monospace;
}
html, body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
  background: #223;
}

body {
  display: flex;
  flex-direction: column;
}

input {
   width: 100%;
   box-sizing: border-box;
   font-size: 16px;
}

maf-child {
  display: block;
  padding: 8px;
  margin: 8px 0;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px 4px rgba(0,0,0,0.1);
}

.content-wrapper {
  flex: 1;
  display: flex;
  padding: 16px;
}

.content-wrapper > * {
  flex: 3;
  box-sizing: border-box;
  justify-content: space-around;
}

.content-wrapper .right-panel {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.content-wrapper .right-panel > * {
  margin: 4px 0;
}

.hidden {
  display: none;
}