* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #050708;
}

body {
  overflow-x: hidden;
}

.page {
  position: relative;
  width: min(100%, 1536px);
  margin: 0 auto;
}

.background {
  display: block;
  width: 100%;
  height: auto;
}

.live-countdown {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.count-value {
  position: absolute;
  top: 30.0%;
  width: 8.45%;
  height: 6.9%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f1b63d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4.5vw, 72px);
  font-weight: 700;
  line-height: 1;
  text-shadow:
    0 2px 0 rgba(0,0,0,.95),
    0 0 18px rgba(242,182,61,.45);
}

.days {
  left: 30.2%;
}

.hours {
  left: 40.55%;
}

.minutes {
  left: 50.95%;
}

.seconds {
  left: 61.25%;
}

@media (max-width: 900px) {
  .page {
    min-width: 900px;
    transform-origin: top left;
  }
}
