* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: system-ui, sans-serif;
  background: #fefce8;
  color: #422006;
  text-align: center;
}

:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}

.hud {
  width: 100%;
  padding: 0.75rem;
  background: #eab308;
  color: #422006;
}

.hud h1 {
  margin: 0;
  font-size: 1.25rem;
}

.hud__score {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}

canvas {
  display: block;
  width: 320px;
  height: 200px;
  max-width: 100%;
  background: #fff;
  border: 2px solid #a16207;
  border-radius: 4px;
  touch-action: none;
}

.status {
  min-height: 1.5rem;
  margin: 0;
  max-width: 320px;
  font-weight: 600;
}

.hint {
  margin: 0;
  color: #92600e;
  font-size: 0.875rem;
}
