body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

.clock-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#clock-wrapper {
  position: relative;
  height: 30vh;
  line-height: 1;
}

#clock-shadow {
  font-size: 30vh;
  color: transparent;
  visibility: hidden;
  user-select: none;
}

#clock {
  font-size: 30vh;
  font-variant-numeric: tabular-nums;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

#date {
  font-size: 3vh;
  margin-bottom: 2vh;
  opacity: 0.8;
}
