:root {
  --background: #f8f5f0;
  --text: #000000;
  --border: #000000;
}

body {
  margin: 0;
  padding-bottom: 150px;
  background: var(--background);
  color: var(--text);
  font-family: 'Copernicus Condensed', 'Times New Roman', Times, serif;
  font-weight: 400;
  font-synthesis: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-family: 'Abril Fatface', 'Times New Roman', Times, serif;
  font-size: clamp(42px, 8vw, 120px);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

h2 {
  font-weight: 700;
  font-size: clamp(24px, 4vw, 32px);
}

h3 {
  font-weight: 400;
  font-size: clamp(16px, 4vw, 24px);
  font-style: italic;
}

h4 {
  font-weight: 700;
  font-size: clamp(10px, 3vw, 16px);
  opacity: 0.4;
  margin-bottom: 0;
}

p {
  padding-bottom: 10px;
  font-size: clamp(10px, 3vw, 16px);
}

a {
  color: inherit;
  text-decoration: none;
}

footer {
  margin-top: 10rem;
}

.container {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.post-preview {
  display: flex;
  padding: 1rem 0;
  margin-bottom: 5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.post-preview h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.post-preview h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.post-preview h4 {
  margin-top: 0;
  margin-bottom: 0;
  text-align: end;
}

.post-number {
    font-size: clamp(24px, 4vw, 32px);
    opacity: 0.4;
    margin-left: 1vw;
    margin-right: 4vw;
}

.post-intro {
  display: block;
  padding: 1rem 0;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--border);
}
.post-intro h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.post-intro h3 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.post-intro h4 {
  margin-top: 0;
  margin-bottom: 0;
}

.site-footer {
  text-align: center;
  padding-top: 30rem;
  font-size: 0.9rem;
  color: #afaeab;
}

.home-button {
  display: block;
  text-align: center;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@font-face {
  font-family: 'Copernicus Condensed';
  src: url('../assets/Copernicus-Book.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Copernicus Condensed';
  src: url('../assets/Copernicus-BookItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Copernicus Condensed';
  src: url('../assets/Copernicus-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Copernicus Condensed';
  src: url('../assets/Copernicus-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Abril Fatface';
  src: url('../assets/AbrilFatface-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}