@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@700&display=swap');

html, body {
  color: #000;
  background: #000;
  font-family: sans-serif;
  font-size: 16px;

  /* disable touch selection */
  -webkit-touch-callout: none; /* Safari */
  -webkit-user-select: none; /* Chrome */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

body, .full-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#debugNode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  padding: 3px 2px 2px;
  color: #000;
  background: rgb(3, 160, 98);
  font-family: 'Courier Prime', monospace;
  font-weight: 600;
  line-height: 1;
  z-index: 99;
  opacity: 0;
}
#debugNode[data-enabled="true"] {
  opacity: 1;
}
#debugNode::before {
  content: 'FPS:';
}

#contentNode {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

#msgNode {
  color: rgb(200, 255, 200);
  display: inline-flex;
  width: auto;
  height: auto;
  max-width: 60%;
  max-height: 60%;
  margin-left: 1em; /* offset letter spacing */
  overflow: hidden;
  word-break: break-word;
  font-family: 'Courier Prime', monospace;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1em;
  text-shadow: 0 0 8px rgba(3, 160, 98, 0.25), 0 0 4px rgba(0, 255, 100, 0.9);
}

@media only screen and (min-width: 600px) {
  #msgNode {
    font-size: 17px;
    max-width: 600px;
  }
}

#mainRenderer {
  display: block;
}
