* {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ededed;
}

.board-item {
  margin: 10px 0;
  color: #666;
  font-size: 1.1rem;
  width: 33.33%;
  text-align: center;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.board-item img {
  width: 18px;
  height: 18px;
}
canvas {
  vertical-align: middle;
  border: 5px solid #888;
  border-radius: 40px;
}
.scoreboard {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  margin: 0 auto;
}
.game,
.control {
  margin: 20px auto;
  text-align: center;
}

.control a {
  display: block;
  margin: 0 auto;
  width: 180px;
  padding: 8px 15px;
  font-size: 1;
  color: #666;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #fef9ed;
  border: 1px solid #666;
  border-radius: 5px;
}
