/* Load DSEG fonts from your static folder */
@font-face {
  font-family: "DSEG7";
  src: url("assets/fonts/DSEG7Modern-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DSEG14";
  src: url("assets/fonts/DSEG14Modern-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Center layout with retro dark background */
html, body {
  height: 100%;
  margin: 0;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
}

.time-container { text-align: center; }

/* Big seven-seg digits */
#clock .digits {
  font-family: "DSEG7", monospace;
  font-size: 10vw;                 /* scale with viewport */
  color: #00ff00;
  letter-spacing: 0.08em;          /* helps the seven-seg look */
  text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}

/* AM/PM in 14-seg so letters look segmented too */
#clock .suffix {
  font-family: "DSEG14", monospace;
  font-size: 6vw;
  color: #00ff00;
  margin-left: 1vw;
  text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
  vertical-align: baseline;
}
