:root {
  --highlight-color: #750d0f;
  --highlight-color-text: #f8fafc;
  --text-color: #000000;
  --bg-color: #faf9f3;
  --emphasize-text-color: #900900;
  --glyph-map-hover-color: #953034;
  --footer-bg-color: #e6e6e6;
  --text-breakpoint: 36em;
  --header-height: 70px;
  --subhead-color: #953034;
  --title-text-color: #b6b6b6;
}

* {
  box-sizing: border-box;
}

:target {
  scroll-margin-top: 90px;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--highlight-color);
  background-attachment: local;
  background-repeat: repeat;
  background-image: linear-gradient(
    to bottom,
    var(--footer-bg-color) 50%,
    var(--highlight-color) 50%
  );
  -webkit-font-smoothing: antialiased;
  color: var(--text-color);
  font-family: miller-text, serif;
  font-size: 16px;
}

body {
  min-height: 100vh;
  background-color: var(--bg-color);
}

main {
  margin: 0 auto;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  max-width: 35rem;
}

main > section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

main > section:last-child {
  border-bottom: none;
}

main > section > *:last-child {
  margin-bottom: 2em;
}

h1 {
  font-family: miller-display, serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.11;
  margin: 1em 0 0.5em 0;
}

h1 + h1 {
  margin-top: 0em;
}

h1 em {
  color: var(--emphasize-text-color);
  font-style: italic !important;
}

p {
  font-family: miller-text;
  font-size: 16px;
  line-height: 1.45;
  max-width: 28rem;
}

p em {
  font-style: italic;
}

main a {
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

#cone {
  position: absolute;
  top: 0px;
  right: 1.5em;
  margin-top: -36px;
  transform: translate3d(0, 0, 0);
}

#about p em {
  font-variant: small-caps;
  font-style: normal;
}

@media screen and (min-width: 75em) {
  main {
    max-width: 56em;
    padding-left: 0px;
    padding-right: 0px;
  }

  p {
    font-size: 21px;
    max-width: 36rem;
  }

  h1 {
    font-size: 60px;
    margin-top: 4rem;
  }
}
