#counter-wrapper {
  font-family: Consolas, monospace;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#label {
  color: #333;
  font-size: 24px;
  margin-bottom: 10px;
}

#odometer {
  display: inline-flex;
  background: #111;
  padding: 12px 16px;
  border: 3px solid #444;
  border-radius: 8px;
}

.digit {
  width: 30px;
  height: 40px;
  overflow: hidden;
  border-right: 1px solid #333;
  position: relative;
}

.digit:last-child {
  border-right: none;
}

.digit-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s ease-in-out;
}

.digit span {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #0f0;
}
