html,
body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  /* background: #fafafa; */
  /* background: whitesmoke; */
  background: white;
  font-family: "Helvetica Neue", arial, sans-serif;
  font-weight: 400;
  color: #444;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: auto;
  margin-top: 40px;
}

.noSelect {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.noSelect:focus {
  outline: none !important;
}

#choice-modal {
  width: 90%;
  height: 80%;
  background-color: dodgerblue;
  position: absolute;
  left: 5%;
  top: 20px;
  border-radius: 8px;
  border: 1px solid grey;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: -10;
  visibility: hidden;
}

#cops,
#wolves,
#guns {
  display: flex;
  justify-content: center;
  width: 60%;
  height: 150px;
  background-color: dodgerblue;
  margin-bottom: 20px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid grey;
}

#wolves {
  background-color: #ff3385;
  padding-top: 10px;
}

#guns {
  background-color: forestgreen;
}

hr {
  border: 0;
  clear: both;
  display: block;
  width: 100%;
  background-color: lightgray;
  height: 1px;
}

#menu {
  position: absolute;
  width: 80%;
  left: 10%;
  bottom: 40px;
  display: flex;
  justify-content: space-evenly;
  padding-top: 20px;
}

#volume {
  display: block;
}

#no_volume {
  display: none;
}

.help-div {
  display: flex;
  flex-direction: row;
  width: 80%;
  justify-content: space-around;
  margin-bottom: 20px;
}
