@font-face {
	font-family: 'Instrument Serif';
	font-display: swap;
	font-weight: 400;
	font-style: normal;
	src: url('./assets/fonts/InstrumentSerif-Regular.ttf');
}

@font-face {
	font-family: 'Instrument Serif';
	font-display: swap;
	font-weight: 400;
	font-style: italic;
	src: url('./assets/fonts/InstrumentSerif-Italic.ttf');
}

:root {
  --bg-color: #eeeee4;
  --bg-color-header: #dcd4c1;
  --fg-color: #000000;
  --primary-color: #33412f;
  --secondary-color: #9fa973;
  --page-inline-size: 70ch;
}

html {
  font-family: "Instrument Serif", serif;
  background-color: var(--bg-color);
  color: var(--fg-color);
}

body {
  margin: auto;
  line-height: 1.4;
}

header {
  background-color: var(--bg-color-header);
  border-bottom: solid black;
  margin: auto
}

main {
  max-inline-size: var(--page-inline-size);
  margin-inline: auto;
  padding-inline: 1rem;
}

h1 {
  margin-block: 0;
  margin-inline: auto;
  max-inline-size: var(--page-inline-size);

  a {
    display: block;
    margin: auto;
    max-inline-size: 30%;
  }
}

h2 {
  text-transform: capitalize;
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
}

p {
  text-wrap: pretty;
  word-spacing: 10%;
}

img {
  inline-size: 100%;
  block-size: auto;
}

footer {
  color: gray;
  text-align: center;
  margin-block: 1rem;
}
