:root {
  --board-size: calc(100vw / 2);
  --cell-size: calc(var(--board-size) / 17);
}
body {
  font-size: 14px;
}

header {
  display: none;
}

footer {
  display: none;
}

.play {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin-top: 0;
}

.play article,
.play aside {
  width: 100vw;
}

.play article .game {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #000;
}

.play article .game thead th {
  height: 24px;
  border: 1px solid #000;
}

.play article .game thead th:nth-child(1) {
  width: 10%;
}
.play article .game thead th:nth-child(2) {
  width: 25%;
}
.play article .game thead th:nth-child(3) {
  width: 25%;
}
.play article .game thead th:nth-child(4) {
  width: 10%;
}
.play article .game thead th:nth-child(5) {
  width: 15%;
}
.play article .game thead th:nth-child(6) {
  width: 15%;
}

.play article .game td {
  height: 20px;
  border: 1px solid #000;
  padding: 0 4px;
}

.play article .btn-wrapper {
  margin-bottom: 0;
  display: none;
}

.play aside .board {
  width: var(--board-size);
  height: var(--board-size);
  background: #fff;
  border-collapse: collapse;
  border: 2px solid #000;
}

.play aside .board td {
  width: var(--cell-size);
  height: var(--cell-size);
  border: 1px solid #000;
  text-align: center;
  box-sizing: border-box;
}

.play aside .board td.info {
  border: none;
  vertical-align: middle;
  text-align: center;
}

.tile {
  background: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.letter {
  width: calc(var(--cell-size) - 2px);
  height: calc(var(--cell-size) - 2px);
  line-height: calc(var(--cell-size) - 2px);
  font-size: 16px;
  font-weight: bold;
  vertical-align: middle;
}

.points {
  display: none !important;
}

.current .tile {
  background: none;
  color: black;
}

.rack {
  display: none;
}

#btn-print {
  display: none !important;
}

.end-game {
  display: none !important;
}
