body {
  overflow: hidden;
  max-height: 98vh;
  background-image: url("worlddarts.jpg");
}

#Menu {
  overflow: hidden;
  width: 98vw;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0; /* Centers the menu within the body */
  position: relative; /* Added to ensure absolute positioning is relative to #Menu */
}
#Menu #PlayerSelect {
  overflow: hidden;
  width: 90%;
  height: 75vh;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left; /* Adjusts children to space between */
  background-color: rgba(75, 75, 75, 0.8);
  border: 3px outset black;
  border-radius: 10px;
}
#Menu #PlayerSelect .gametype, #Menu #PlayerSelect .checkout {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 50px;
}
#Menu #PlayerSelect .gametype label, #Menu #PlayerSelect .checkout label {
  font-weight: bold;
  color: white;
  font-size: 32px;
}
#Menu #PlayerSelect .gametype select, #Menu #PlayerSelect .gametype select > option, #Menu #PlayerSelect .checkout select, #Menu #PlayerSelect .checkout select > option {
  font-weight: bold;
  font-size: 28px;
}
#Menu #PlayerSelect .players {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  height: 40vh;
  width: 100%;
}
#Menu #PlayerSelect .button-box {
  position: relative;
  bottom: 10px;
  width: 100%;
  height: 50px;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
#Menu h1 {
  display: block;
  width: 100%;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 2px black;
}

.player-box {
  border: 5px outset rgb(44, 44, 44);
  height: 100px;
  width: 300px;
  margin: 20px;
  margin-left: 50px;
  background-image: linear-gradient(rgb(134, 134, 134), rgb(29, 29, 29));
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: flex-start;
}
.player-box select {
  margin-top: 20px;
  font-size: 24pt;
}

.nav {
  display: none;
}

.selected {
  border: 5px solid white;
  box-shadow: 0px 0px 10px 5px #f4ffb7;
}/*# sourceMappingURL=setup.css.map */