:root {
	--color-bg: #fefaf6;
	--color-text: #222;
	--color-text-light: #6c6c6c;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: black;
    --color-text: #e4e1e1;
    --color-text-light: #888;
  }
}

body {
	background-color: var(--color-bg);
	color: var(--color-text);
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  max-width: 60ch;
  line-height: 1.5;
  font-size: 1rem;
  font-family:
    "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
}

h1 {
  text-align: center;
  margin-bottom: 4rem;
}

a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--color-text-light);
}

a:hover {
  border-bottom-color: var(--color-text);
}

section {
  margin-block: 4rem;
}

p {
	text-align: justify;
	hyphens: auto;
}

p#fecha {
	margin-top: 3rem;
	text-align: right;
	font-style: italic;
}

.sintagma-fecha {
	margin-left: 0.5rem;
	color: var(--color-text-light);
	font-size: 0.8rem;
}