* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  color: #ffffff;
  background: #000000;
  font-family: Arial, Helvetica, sans-serif;
}

.screen {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding: 24px;
  background: #000000;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  outline: none;
}

.timer {
  width: 100%;
  color: #ffffff;
  font-size: clamp(4rem, 18vw, 14rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.status {
  min-height: 28px;
  color: #aaaaaa;
  font-size: clamp(1rem, 3vw, 1.6rem);
  text-align: center;
}
