html, body {
  margin: auto;
  height: 100%;     /* Για να μην γίνεται scrolling */
  overflow: hidden; /* hide scrollbars */
  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(63, 134, 196); /* Sky color */
  color: black;
}

canvas {
  display: block;
  margin: auto;
  height: 100%;     /* Για να μην γίνεται scrolling */
  touch-action: none; /* Για να μην κινείται ο canvas όταν γίνεται drag */
}

.inputbox {
  font-family: "Segoe UI Semibold";
  font-weight: normal;
  background-color: rgb(48, 98, 213);
  color: white;
  border: none;
  position: relative;
  z-index: 9;
}
.inputbox:focus {
  outline: none;
  position: relative;
  z-index: 9;
}
.inputbox::selection {
    background: grey;
    position: relative;
    z-index: 9;
}
.OK_button {
  padding: 0;
  font-weight: bold;
  font-size: large;
}

@font-face {font-family: "Segoe UI Semibold"; src: url("assets/seguisb.ttf") format("truetype"); }
