:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
}

body {
  color: #111111;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

.click-counter {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  place-items: center;
  cursor: pointer;
  touch-action: manipulation;
}

.click-count {
  font-size: clamp(56px, 12vw, 96px);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
