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

:root {
  --bg: #f9f6f0;
  --text: #2a2118;
  --muted: #8a7d6b;
  --max-width: 680px;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Courier New', monospace;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

main {
  width: 100%;
  max-width: var(--max-width);
}

/* Odjeljak citata */
#quote-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

/* Loading i greška */
#loading, #error-message {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
}

/* Glavni citat */
#quote-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadeIn 0.6s ease;
}

blockquote {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
}

/* Referenca */
cite {
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
