body {
  font-family: Arial, sans-serif;
  background: #fafafa;
}

.game-description > * {
  margin: 0;
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 30px;
}

.palette {
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.color-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #333;
  border-radius: 50%;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, border-width 0.2s;

  &:hover {
    filter: brightness(0.8);
  }
}

.color-btn.selected {
  border-width: 4px;
  box-shadow: 0 0 10px #666;
}

.keyboard {
  display: grid;
  grid-template-columns: repeat(19, 40px);
  grid-gap: 4px;
  background: #eaeaea;
  padding: 20px;
  border-radius: 12px;
  max-width: 900px;
}

.key {
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #bbb;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  user-select: none;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.2s;
}

.key.blank {
  background: transparent;
  border: none;
  pointer-events: none;
  cursor: default;
}

.key.wide {
  grid-column: span 2;
}

.key.extra-wide {
  grid-column: span 3;
}

.key.space {
  grid-column: span 7;
}

.key.numpad-wide {
  grid-column: span 2;
}

.key.numpad-row {
  grid-row: span 2;
}

.msg-container {
  /* color: #e94b3c; */
  font-size: 20px;
  /* font-weight: bold; */
  margin-top: 20px;
  min-height: 28px;
  text-align: center;
  /* letter-spacing: 2px; */
}