@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500;700&display=swap");

body {
  min-width: fit-content;
}

#grid {
  border-spacing: 1.5em;
  border-collapse: separate;
  table-layout: fixed;
  display: inline-block;
  background: #191c1c;
  background: linear-gradient(149deg, #3d4745 0%, #363636 48%, #191c1c 100%);
  user-select: none;
}

#grid.leader-line {
  z-index: 0;
}

table.leader-line {
  z-index: 0;
}

.box {
  background: #E5E4E2;
  color: #3a3a3a;
  text-align: center;
  border-radius: 50%;
  font-size: 3em;
  transition: ease-in-out;
  transition-duration: 0.1s;
  width: 90px;
  height: 90px;
  border: 0 solid;
  vertical-align: middle;
  z-index: 5;
  box-shadow: inset 0 0 10px #2b2b2b;
  filter: drop-shadow(0 1px 10px #1d1d1d);
  font-family: "Roboto", sans-serif;
}

.box:hover {
  background: rgba(88, 88, 88, 0.568);
  transition-duration: 0.1s;
  color: white;
  transform: translateY(-2px);
}

.selected {
  transition-duration: 0.1s;
  transition: ease-in-out;
  background: #007209;
  color: white;
  border: 3px solid white;
  font-weight: 700;
  transition: ease-in-out 200ms all;
}

.start {
  background: #bbffbb;
  color: black;
  font-weight: bold;
}

#letterbox {
  width: 20ch;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  text-align: center;
  pointer-events: none;
}

#queue {
  text-align: center;
}

.score {
  font-size: 1.4rem;
}
