body {
  font-family: "CiscoSans Light";
}

/* Style for the start game site */
.rootContainer {
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
}

.modalContainer {
  width: 40%;
  min-height: 25%;
  background-color: white;
  box-shadow: 0 0 5px rgba(217, 241, 242, 0.878), 0 2px 10px rgba(217, 241, 242, 0.878);
  position: absolute;
  align-items: center;
  padding: 10px;
  border:10px;
  border-radius: 4%;
  justify-content: space-evenly;
  flex-direction: column;
  display: flex;
}

.getReady{
  color: black;
  text-align: center;
  font-size: 260%;
  font-weight: bold;
}

.introCurveBot{
  color: black;
  text-align: center;
  font-size: 200%;
  margin-top: 2%;
}

.connectedPlayers {
  font-size: 150%;
  margin-top: 2%;
  margin-bottom: 2%;
}

.playerContainer {
  align-items: baseline;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  flex-wrap: wrap;
  flex-direction: row;
  display: inline-flex;
}

.playerElement {
  justify-content: space-evenly;
  margin: 15px;
  vertical-align: middle;
  flex-direction: row;
  display: inline-flex;
}

.playerImage {
  width: 50px;
  height: 50px;
  border: 2px solid black;
  border-radius: 50%;
  margin-right: 5px;
}

.startButton {
  height: 63px;
  width: 192px;
  color:white;
  font-size: xx-large;
  border:1px;
  border-radius: 44px;
  border-color:white;
  background-color:rgb(0, 214, 162);
  box-shadow: 0 0 5px rgba(217, 241, 242, 0.878), 0 2px 10px rgba(217, 241, 242, 0.878);
  margin-top: 10px;
  margin-bottom: 8px;
}

.qrContainer {
  position: absolute;
  right: 5%;
  bottom: 5%;
  padding: 10px;
  border: 1px solid black;
  border-radius: 10px;
}

.resetButton{
  height: 34px;
  width: 192px;
  color: white;
  font-size: large;
  border: 1px;
  border-radius: 44px;
  border-color: white;
  box-shadow: 0 0 5px rgba(217, 241, 242, 0.878), 0 2px 10px rgba(217, 241, 242, 0.878);
  background-color:#ffCE73;
  margin-bottom: 5px;
  display: none;
}

/* Stye for the avatar triangle that shows the direction */
.spanTriangle {
  width: 0; 
  height: 0; 
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid black;
}