#board {
  background-color: black;
  width: 600px;
  height: 600px;
  color: white;
  margin: 10px auto;
}

.row {
  width: 600px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
}

.spot {
  border-style: solid;
  border-color: white;
  height: 200px;
  width: 200px;
  padding-top: 35px;
  position: relative;
  box-sizing: border-box;
  font-size: 85px;
}

#tokenSelect {
  width: 400px;
  height: 200px;
  position: absolute;
  top: 300px;
  left: 50%;
  margin-left: -200px;
  padding-top: 20px;
  background-color: gray;
  border-radius: 20px;
}
.btn {
  padding: 20px 25px;
  margin-top: 10px;
  font-size: 24px;
  background-color: black;
  border: none;
}

.btn:hover {
  background-color: white;
  color: black;
}