body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  background-color: #FAF9F7;
  overflow: hidden;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.clock__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.clock_clock {
  color: #C7A77A;
  font-family: "Space Grotesk";
  font-weight: 200;
  letter-spacing: -0.03em;
  font-size: clamp(6rem, 18vw, 25rem);
  line-height: 1;
  transition: opacity 0.5s ease;
}
.clock_clock.is-changing {
  opacity: 0;
}

.clock_date {
  color: #8B8B8B;
  font-family: "Space Grotesk";
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 2rem);
  opacity: 0.85;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clock_clock,
.clock_date {
  user-select: none;
}

/*# sourceMappingURL=main.css.map */
