/* === Base Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === StanCRAFT Font === */
@font-face {
  font-family: 'StanCRAFT';
  src: url('../assets/fonts/StanCRAFT.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* === Page Layout === */
body {
  font-family: 'StanCRAFT', monospace;
  height: 100vh;
  background: url('../assets/images/1920x1080_wm.svg') no-repeat center center fixed;
  background-size: cover;
  color: #0075FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2rem;
}

/* === Overlay Container === */
#overlay {
  width: 100%;
  max-width: 1400px;
  text-align: center;
  margin-top: 1rem;
}

/* === Quote Styling === */
#quote {
  font-size: 9pt;
  color: #0075FF;
  margin-bottom: 0.25rem;
  transition: opacity 0.5s ease-in-out;
}

#author {
  font-size: 8pt;
  opacity: 0.7;
  margin-bottom: 2rem;
  transition: opacity 0.5s ease-in-out;
}

/* === Zulu Time === */
#zulu-time {
  font-size: 60px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: #0075FF;
}

/* === Current Date === */
#current-date {
  font-size: 18px;
  color: #0075FF;
  opacity: 0.9;
}
