/*
 * Make <canvas> use the full page size
 * Center <div id="wrapper"> horizontally and vertically
 */
body {
  padding: 0;
  margin: 0;
  overflow: hidden; /* hide annoying scroll bar */
}

body, html {
  height: 100%;
}

canvas {
  width: 100%;
  height: 100%;
}

div#container {
  width: 100%;
  height: 100%;
}

div#wrapper {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

div#enter_hof_overlay, div#show_hof_overlay, div#accessibility_overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

div#enter_hof_overlay h1, div#show_hof_overlay h1, div#accessibility_overlay h1 {
  /*font-weight: bold;*/
  font-family: trisclick2;
  font-size: 50px;
  margin-block-start: 0.67em;
  margin-block-end: 0.3em;
}

div#enter_hof_overlay p, div#show_hof_overlay p, div#accessibility_overlay p {
  font-family: trisclick2;
  font-size: 30px;
}

div#enter_hof_overlay input {
  /*font-weight: bold;*/
  font-family: trisclick2;
  font-size: 30px;
}

div#show_hof_overlay td {
  /*font-weight: bold;*/
  font-family: trisclick2;
  font-size: 30px;
  padding-right: 20px;
}

td.n {
  text-align: right;
}

div.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}


div.centered p {
  margin-block-start: 0;
  margin-block-end: 0.3em;
}

div.vspace {
  height: 20px;
}

/*input#nickname {
  width: 80%;
}*/

p.c {
  text-align: center;
}

/*
 * Hide preload images
 */
div#preload_images {
  display: none;
}

@font-face {
  font-family: trisclick2;
  src: url(trisclick2.ttf);
}

