:root {
  /*--accent-bg: 53, 61%, 92%;*/
  --accent-bg: 49, 25%, 91%;
  --nav-bg: 49, 8%, 25%;
  --nav-fg: 49, 25%, 100%;
  --normal-bg: 0, 0%, 100%;
  /*--link-color: 49, 15%, 5%;*/
  --link-color: 49, 90%, 15%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    font-style: inherit;
    font-variant: inherit;
    background-color: transparent;
    border: 0 none;
    color: inherit;
    line-height: inherit;
    list-style-type: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    text-align: inherit;
    text-decoration: inherit;
    text-tansform: inherit;
}

a {
  font-weight: 700;
  color: hsl(var(--link-color));
}

a:focus, a:hover {
  text-decoration: underline;
}

.nav {
  background-color: hsl(var(--nav-bg));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1em;
  z-index: 1000;
}

.nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 400px;
  width: calc(100vw - 48px);
}

.nav a {
  font-size: 2.0rem;
  color: hsl(var(--nav-fg));
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  padding: 48px;
}

.hero h1 {
  font-family: "Cormorant SC";
  font-size: 4em;
  margin-bottom: 1em;
  text-align: center;
}

.hero-image {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
}

html {
  font-size: 10px;
}

body {
  list-style-type: none;
  color: #212121;
  font-family: "Cormorant", serif;
  text-decoration: none;
}

footer {
  border-top: 1px solid #222;
  margin-top: 1rem;
}

header.accent-bg,
section.accent-bg {
  box-shadow: rgba(0,0,0,0.3) 0px 2px 8px;
}

.accent-bg {
  background-color: hsl(var(--accent-bg));
}

.sep-hedera {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #fff;
  color: hsl(var(--nav-bg));
  z-index: 1;
}

.sep-hedera::before {
  position: absolute;
  top: 50%;
  width: calc(40vw + 8em);
  min-width: calc(400px + 8em);
  display: block;
  content: "";
  border-bottom: 1px solid #212121;
  z-index: 1;
}

.sep-hedera::after {
  position: relative;
  display: block;
  font-size: 4.0em;
  /*content: "❧";*/
  content: "❦";
  background-color: #fff;
  padding: 0 1em;
  z-index: 2;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 0;
}

.content > h1,
.content > p,
.content > ol,
.content > ul {
  max-width: 400px;
  width: calc(100vw - 48px);
}

.content h1 {
  font-family: "Cormorant SC";
  font-size: 2.6rem; 
  margin-bottom: calc(1em / 1.6 * 1.2);
  line-height: 1.6em;
  text-align: center;
}

.content p {
  font-size: 2.0rem; 
  margin-bottom: 1em;
  line-height: 1.6em;
}

.content strong {
  font-family: "Cormorant SC";
  font-weight: 600;
}

.content dl {
  display: flex;
  max-width: 400px;
  width: calc(100vw - 48px);
  flex-wrap: wrap;
}

.content dt {
  overflow: hidden;
  flex: 1 14%;
  font-size: 2.2rem;
  line-height: 1.6em;
  text-align: right;
  padding-right: 0.4em;
}

.content dd {
  overflow: hidden;
  flex: 1 86%;
  font-size: 2.2rem;
  line-height: 1.6em;
  padding-left: 0.4em;
}

.content ol,
.content ul {
  display: block;
  font-size: 2.0rem; 
  margin-bottom: 1em;
  line-height: 1.6em;
}

.content ol li {
  list-style: lower-alpha;
  margin-left: 1em;
}

.center {
  text-align: center;
}

.greeting {
}
