:root {
  --serif: -apple-system-ui-serif, ui-serif, 'Georgia', serif, "Apple Color Emoji";
  --sans-serif: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif, "Apple Color Emoji";
}

* {
  font-family: var(--serif);
  margin: 0;
  padding: 0;
}

*::selection {
  background-color: #79ab4d;
  color: white;
}

body {
  max-width: 45em;
  margin: 0 auto;
  padding-left: 1.5em;
  padding-right: 1.5em;
  padding-bottom: 4.5em;
  text-wrap: pretty;
}

html {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--sans-serif);
  width: 100%;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

pre {
  font-family: ui-monospace, SFMono-Regular, ui-monospace, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
}

em {
  font-style: normal;
  font-weight: bold;
}

p+p {
  margin-top: 1em;
}

p {
  font-size: inherit;
  line-height: 1.6em;
}

a,
a:hover,
a:visited,
a:active {
  color: #60883d;
}

section+section {
  margin-top: 2.5em;
}


/* Small Screens ************************/
@media only screen and (max-device-width: 640px),
only screen and (max-device-width: 667px),
only screen and (max-width: 480px) {
  .signature {
    width: 3rem;
  }
}

/* Print ********************************/
@media only print {
  body {
    max-width: 30em;
    padding-bottom: 0;
  }

  h1 {
    padding-top: 1.75em;
    padding-left: 3.5em;
    display: block;
    text-align: left;
  }

  a,
  a:hover,
  a:visited,
  a:active {
    color: black;
    text-decoration: none;
  }

}
