html,
body {
  margin: 0px;
  background-color: black;
  overflow: hidden;
  position: fixed;
  width: 100vw;
  height: 100vh;
}

header {
  font-family: "Contrail One", Arial, sans-serif;
}

@media only screen and (orientation: landscape) {
  #app {
    width: 177.77778vh;
    height: 100vh;
  }
}

@media only screen and (orientation: portrait) {
  #app {
    width: 177.77778vw;
    height: 100vw;
    transform: rotate(90deg);
  }
}

#app {
  margin-left: auto;
  margin-right: auto;
  background-color: #333333;
  display: flex;
}

#app #machine {
  width: 80%;
}

#app #machine header {
  width: 100%;
  height: 20%;
  font-size: 17vh;
  text-align: center;
  color: white;
}

#app #machine #reels-container {
  height: 60%;
  display: flex;
  justify-content: flex-start;
}

#app #machine #reels-container .reel-container {
  background-color: #333333;
  width: 30%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

#app #machine #reels-container .reel-container .reel {
  height: 80%;
  width: 100%;
}

#app #machine #reels-container .reel-container .reel .canvas-wrapper {
  width: 100%;
  height: 100%;
}

#app #machine #reels-container .reel-container .name-display {
  box-sizing: border-box;
  width: 100%;
  height: 15%;
  padding: 2vh;
  background-color: white;
  color: #333333;
  text-align: center;
  font-family: "Contrail One", Arial, sans-serif;
  font-size: 4vh;
  margin-top: 10%;
}

#app #machine #shots-container {
  width: 100%;
  height: 12%;
  background-color: white;
  box-sizing: border-box;
  margin: 4% 0%;
}

#app #lever {
  width: 20%;
  position: relative;
  touch-action: none;
}

#app #lever #lever-handle {
  background-color: red;
  border-radius: 100%;
  width: 0%;
  padding: 45%;
  cursor: move;
  touch-action: none;
  z-index: 110;
  position: absolute;
  left: 5%;
  font-size: 8vh;
  font-family: Arial, sans-serif;
  color: white;
  line-height: 0px;
}

#app #lever #lever-handle .text {
  -webkit-user-select: none;
  position: absolute;
  left: 0px;
  top: 8vh;
  width: 100%;
  text-align: center;
  line-height: 8vh;
}

#app #lever #lever-arm {
  z-index: 100;
  background-color: grey;
  width: 25%;
  height: 80%;
  position: absolute;
  bottom: 0px;
  left: 37.5%;
}