/* ====== FONT SETUP ====== */
@font-face {
  font-family: 'Metropolis';
  src: url('metropolis.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  src: url('metropolis-italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

/* ====== PAGE BACKGROUND & TEXT ====== */

/* base layout */
body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Metropolis", sans-serif;
  font-size: 11pt;
  line-height: 8px;
  margin: 120px auto;
  padding: 0 20px;
  max-width: 700px;
}

.fade-line {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-line.visible {
  opacity: 1;
  transform: translateY(0);
}


/* entry layout */

.entry-number {
  font-size: 20pt;
  font-weight: 600;
  margin-bottom: 50px;
}

/* mobile tuning */
@media (max-width: 600px) {
  body {
    font-size: 10.5pt;
    line-height: 15px;
    margin: 50px 15px;
  }

  p {
    margin: 0 0 2px 0; /* smaller spacing between lines */
  }

  .entry {
    margin-bottom: 20px;
  }

  .entry-number {
    font-size: 20pt;
    margin-bottom: 30px;
  }
}


/* ====== ENTRIES ====== */

/* disable numbering */
.entry.no-number::before {
  content: none;
  counter-increment: none;
}


#entries {
  counter-reset: section;
}
/*
.entry::before {
  counter-increment: section;
  content: counter(section) " .";
  display: block;
  font-size: 20pt;
  font-weight: 600;
  margin-bottom: 40px;
}
*/
.intro {
  text-align: left;
  max-width: 700px;
  margin: 40px 0 50px 0;
  font-size: 10.5pt;
  line-height: 1.1em;
  opacity: 0.85;
  font-style: italic;
}

/* ====== SUPPORT BUTTON ====== */
.support-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: none;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 15px 20px;
  text-transform: lowercase;
  cursor: pointer;
  font-family: "Metropolis", sans-serif;
  font-size: 10pt;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.support-button {
  text-decoration: none;
  color: #ffffff;
}

/* ====== OPTIONAL ITALICS ====== */
em {
  font-style: italic;
  opacity: 0.9;
}


  