@import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap");

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.clock {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #eaffd9;
  font-family: 'Share Tech Mono', monospace;
}

.clock h1 {
  margin: 0;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(212, 255, 138, 0.45);
}

.clock p {
  margin: 10px 0 0;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #cdeab5;
  opacity: 0.85;
}


/* --- Mobile adjustments --- */
@media (max-width: 600px) {
  .clock h1 {
    font-size: 4.5rem;
    letter-spacing: 2px;
  }

  .clock p {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 380px) {
  .clock h1 {
    letter-spacing: 1px;
  }
}

/* Landscape phones - shorter viewport height */
@media (max-height: 420px) and (orientation: landscape) {
  .clock p {
    margin-top: 4px;
  }
}