html, body {
  margin: auto;
  overflow: hidden; /* Hide scrollbars */
  height: 100%;     /* Για να μην γίνεται scrolling */
  touch-action: none; /* Για να μην κινείται ο canvas όταν γίνεται drag */

  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
     -moz-user-select: none; /* Old versions of Firefox */
      -ms-user-select: none; /* Internet Explorer/Edge */
          user-select: none; /* Non-prefixed version, currently
                                supported by Chrome, Edge, Opera and Firefox */
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
canvas {
  display: block;
  margin: auto;
  height: 100%;     /* Για να μην γίνεται scrolling */
  touch-action: none; /* Για να μην κινείται ο canvas όταν γίνεται drag */
  /* position: absolute; */
}
.loadingclass {
  background-color: rgb(0, 0, 0);
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
}
.inputbox {
  font-family: "Arial Narrow Bold";
  font-weight: normal;
  background-color: rgb(0, 0, 0);
  color: white;
  border: none;
  position: absolute;
  z-index: 9;
}
.inputbox:focus {
  outline: none;
  position: absolute;
  z-index: 9;
}
.inputbox::selection {
    background: grey;
    position: absolute;
    z-index: 9;
}
.OK_button {
  padding: 0;
  font-weight: bold;
  font-size: medium;
}

@font-face {font-family: "Arial Narrow Bold"; src: url("ARIALNB.TTF") format("truetype"); }
