* {
  font-family: 'Russo One', sans-serif;
}

html,
body {
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

canvas {
  width: 100%;
  height: 100%;
  touch-action: none;
}

#pageContainer {
  position: relative;
  margin: 10px;
  padding: 17px;
  border: solid white;
  border-radius: 7px;
  color: brown;
  text-align: center;
  height: 90vh;
}

#landingPageContainer {
  width: 100%;
  height: 100%;

}

#hero {
  height: 65vh;
  background: url('./space-truckers-landing-logo.jpg') center center transparent no-repeat;
  background-size: cover;
  opacity: 0.68;
}

#ctaRow,
#footer {
  margin-top: 10px;
  padding-bottom: 7px;
}

#ctaRow button {
  font-size: 5vh;
  padding: 7px 9px;
  margin: 5px 7px;
  background: brown;
  border-radius: 11px;
  color: white;
  cursor: pointer;
}

.background-canvas {
  position: absolute;
  top: 0;
  left: auto;
  z-index: -10;
}

.disable-selection {
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  user-select: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  background-color: black;
  /* mobile webkit */
}

#pageContainer h1 {
  font-size: 4.5vh;
  margin-top: 0;
}

#howToPlayContainer {
  width: 33%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1000;
  top: 1%;
  left: 33%;
  max-height: 80%;
}

#howToPlayContainer h2,
#howToPlayContainer h3,
th {
  text-decoration: underline;
  text-align: center;
}

#howToPlayContainer div {
  background-color: rgba(56, 112, 32, 0.86);
  padding: 20px;
  margin: 20px;
  font-size: smaller;
  border-radius: 8px 7px;
  display: flex;
  flex-direction: column;
  height: auto;
  width: auto;
  overflow: scroll;
}

#howToPlayContainer table {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px 7px;
}

.hidden {
  display: none !important;
}