* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: dos;
  src: url(MorePerfectDOSVGA.ttf);
}

body {
  background-color: black;
  color: #33ff33;
  font-family: dos, monospace;
  font-size: 16px;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-shadow: 0 0 20px #293;
}

table, th, td {
  border:1px solid #33ff33;
  width: max-content;
}

a {
  color: #7affaa;
}

#terminal {
  padding: 12px;
  flex: 1;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-all;
  min-height: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

#titlebar {
  flex-shrink: 0;
  height: 1.2em;
  line-height: 1.2em;
  background: #33ff33;
  color: #000;
  padding: 0 12px;
  font-weight: bold;
  text-shadow: none;
  box-shadow: 0 0 20px #293, inset 0 0 20px rgba(0,0,0,0.3);
  text-align: center;
 }

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(rgba(32, 255, 53, 0.1) 50%, rgba(128, 0, 128, 0.1) 50%);
  background-size: 100% 2px;
}
