@font-face {
  font-family: 'The Seasons';           /* Name you'll use to reference it */
  src: url('fonts/The\ Seasons\ Regular.ttf') format('truetype');
  /* font-weight: normal; */
  /* font-style: normal; */
}

body {
    background-color: #e9eac5;
    margin: 0 auto;
    max-width: 640px;
    padding: 0 16px;
    box-sizing: border-box; /* prevents padding from adding to the width */
    /* font-family: system-ui, -apple-system, sans-serif; */
    font-family: serif;
}

.hero-image {
  width: calc(100% + 32px); /* cancel out body padding */
  display: block;
  margin: 0 -16px; /* cancel out body padding */
}

.hero-title {
  text-align: center;
}

.hero-title h1 {
  font-size: 3.7rem;
  margin: 0 -8px;;
  padding-top: 30px;
  padding-bottom: 20px;
}

.hero-title p {
  font-size: 1.5rem;
  margin: 0;
  padding-bottom: 5px;
}

section {
  background: rgba(255, 255, 255, 0.4);
  padding: 16px;
  border-radius: 12px;
  margin-top: 20px;
}

h1 {
    font-family: 'The Seasons', serif;
    font-weight: 400;
}

h1, h2, h3 {
    font-family: 'The Seasons', serif;
    color: #1b3e10;
}

h2 {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(27, 62, 16, 0.2);
}

p, li, pre {
    color: #1b3e10;
}

iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  margin-top: 10px;
}

.timeline {
  position: relative;
  margin-top: 20px;
  padding-left: 25px;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(27, 62, 16, 0.3);
}

/* Each item */
.timeline-item {
  position: relative;
  margin-bottom: 16px;
}

/* Dot
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #1b3e10;
  border-radius: 50%;
} */