body {
  margin: 0;
  background-color: #121212;
  color: white;
}

* {
  z-index: 100;
  font-family: "Inter", sans-serif;
  user-select: none;
}

.background-bottom {
  background-color: #212121;
  z-index: -100;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
}

.counter {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 16em;
  user-select: none;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.message {
  font-size: 4em;
  text-align: center;
  opacity: 0;
  color: gray;
  user-select: none;
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
}

@media (max-width: 600px) {
  .counter {
    font-size: 10em;
  }

  .message {
    font-size: 2em;
  }
}

.lucide-circle-question-mark {
  transition: rotate 0.3s ease, scale 0.3s ease;
  color: grey;
  position: absolute;
  right: 1em;
  top: 1em;
  width: 2em;
  height: 2em;
}

.lucide-circle-question-mark:hover {
  cursor: pointer;
  rotate: 360deg;
  scale: 1.2;
}
