html {
  touch-action: none;
}

body {
  margin: 0;
  background-color: #faf8ef;
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  user-select: none;
  touch-action: none;
  -webkit-user-select: none;
}

/* include border and padding in element width and height */
/* * { */
/* box-sizing: border-box; */
/* } */

.container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  margin: auto;
  font-family: "Courier New", sans-serif;
  font-weight: 300;
  touch-action: none;
}

h1 {
  font-size: 7em;
  color: steelblue;
  margin-bottom: 0;
  margin-top: 18px;
}

h2 {
  font-size: 3em;
  color: steelblue;
}

h3 {
  margin-top: 0;
  color: steelblue;
}

.displayChildOnHover:hover > .hidden {
  display: block;
}
.hidden {
  display: none;
}

button {
  font-family: "Courier New", sans-serif;
}

#PLAY_button {
  background-color: steelblue;
}
#PLAY_button:hover {
  background-color: #568f56;
  border: '3px solid red';
}

#benhub {
  color: steelblue;
}
#benhub:hover {
  color: #568f56;
}

