@font-face {
  font-family: 'EB Garamond';
  src: url('/fonts/EBGaramond-Variable.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: url('/fonts/EBGaramond-Italic-Variable.woff2') format('woff2');
  font-weight: 400 800;
  font-style: italic;
  font-display: swap;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.7;
  background-color: #000;
  color: #fff;
  transition: background-color 60s linear, color 60s linear;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  position: relative;
  overflow: hidden;
}

#verse-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  max-height: 50vh;
  text-align: center;
}

#verse-ref {
  font-size: 0.85em;
  font-variant: small-caps;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
  color: #cc0000;
  transition: color 60s linear;
}

#verse-text {
  font-size: 1em;
  transition: color 60s linear;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.7em;
  font-variant: small-caps;
  letter-spacing: 0.15em;
  opacity: 0.6;
  transition: color 60s linear;
}
