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

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  color: #212121;
  background-color: #fafafa;
  margin: 0;
  font-family: Merriweather, Georgia, serif;
  font-size: 1.6em;
  font-weight: 300;
  line-height: 1.8em;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.6em;
    line-height: 1.6em;
  }
}

a {
  font-weight: 300;
  color: #1254a1;
  text-decoration: none;
}
a:focus, a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid #2f6f4f;
  outline-offset: 3px;
  border-radius: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Lato, Helvetica, sans-serif;
  font-weight: 700;
  color: #000;
  margin: 6.4rem 0 3.2rem 0;
}

h1 {
  font-size: 3.2rem;
  line-height: 3.6rem;
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 3rem;
    line-height: 3.4rem;
  }
}

b,
strong {
  font-weight: 700;
}

img {
  max-width: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.container {
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
  max-width: 90rem;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-120%);
  padding: 1rem 1.6rem;
  background-color: #212121;
  color: #fafafa;
  font-family: Lato, Helvetica, sans-serif;
  font-size: 1.4rem;
  z-index: 10;
  transition: transform 0.15s ease-in-out;
}
.skip-link:focus {
  transform: translateY(0);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    color: #fafafa;
    background-color: #212121;
  }
  a {
    color: #83b6f1;
  }
  :focus-visible {
    outline-color: #6fce9f;
  }
  h1,
h2,
h3,
h4,
h5,
h6 {
    color: #e9e9e9;
  }
  .skip-link {
    background-color: #fafafa;
    color: #212121;
  }
}
.footer {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}
.footer p {
  margin: 0;
  font-family: "Inconsolata", monospace;
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
  color: #5c5c5c;
}
@media (prefers-color-scheme: dark) {
  .footer p {
    color: #b0b0b0;
  }
}

.content {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  text-align: center;
  padding: 4rem 0;
}
.hero .hero-logo {
  display: block;
  width: 8rem;
  height: auto;
  margin: 0 auto 2.4rem auto;
}
@media only screen and (max-width: 768px) {
  .hero .hero-logo {
    width: 6rem;
  }
}
.hero .hero-wordmark {
  font-family: "Inconsolata", monospace;
  font-weight: 700;
  letter-spacing: -0.1rem;
  font-size: 6.4rem;
  line-height: 1.1;
  margin: 0;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .hero .hero-wordmark {
    font-size: 4rem;
  }
}
.hero .hero-wordmark .hero-dot {
  color: #2f6f4f;
}
.hero .hero-tagline {
  font-family: Merriweather, Georgia, serif;
  font-style: italic;
  font-size: 2.2rem;
  line-height: 1.5;
  margin: 2.4rem auto 0 auto;
  max-width: 36rem;
}
@media only screen and (max-width: 768px) {
  .hero .hero-tagline {
    font-size: 1.9rem;
  }
}
.hero .hero-contact {
  font-family: "Inconsolata", monospace;
  font-size: 1.6rem;
  margin: 4rem 0 0 0;
}
.hero .hero-contact a {
  color: #2f6f4f;
  border-bottom: 1px solid transparent;
}
.hero .hero-contact a:hover, .hero .hero-contact a:focus {
  text-decoration: none;
  border-bottom-color: #2f6f4f;
}
@media (prefers-color-scheme: dark) {
  .hero .hero-wordmark {
    color: #e9e9e9;
  }
  .hero .hero-wordmark .hero-dot {
    color: #6fce9f;
  }
  .hero .hero-contact a {
    color: #6fce9f;
  }
  .hero .hero-contact a:hover, .hero .hero-contact a:focus {
    border-bottom-color: #6fce9f;
  }
}
