:root {
  --text-primary: light-dark(#2a2a2a, #e8e8e8);
  --text-secondary: light-dark(#474747, #A1A1A1);
  --bg-primary: light-dark(#e3e3e1, Canvas);
  --border-color: light-dark(#d0d0d0, #3a3a3a);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font: 400 15px/1.8 "Source Serif 4", Georgia, "Times New Roman", serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}
.hero,
.content {
  max-width: 75ch;
  margin: 0 auto;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5em 2em 350px;
}
.content {
  padding: 0 2em 3em;
  text-align: center;
}
.content p {
  margin: 0 auto 2.2em;
}
.content p:last-of-type a,
footer p {
  font-family: var(--font-sans);
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75em 2em;
  text-align: center;
  border-top: 1px solid var(--border-color);
  z-index: 10;
  background-color: var(--bg-primary);
}
footer p {
  margin: 0;
  font-weight: 300;
  font-size: 0.75em;
  color: var(--text-secondary);
}
a {
  color: inherit;
  text-decoration: underline dotted 1px;
}
a:hover {
  color: var(--text-secondary);
  text-decoration-style: solid;
}
a:focus {
  outline: 2px solid currentColor;
}
.skip-link {
  position: fixed;
  top: -999px;
  left: 0;
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 11;
}
.skip-link:focus {
  top: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.blob-cont {
  height: 350px;
  width: 500px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.b1,
.b2,
.b3 {
  position: absolute;
  border-radius: 100px;
  filter: blur(70px);
  opacity: 0.7;
}
.b1 {
  background-color: #eee;
  top: 200px;
  left: 100px;
  height: 200px;
  width: 200px;
  animation: b1 7s infinite ease;
}
.b2 {
  background-color: #737373;
  top: 80px;
  right: -20px;
  height: 200px;
  width: 250px;
  animation: b2 7s infinite ease;
}
.b3 {
  background-color: #aaa;
  right: 0;
  top: 250px;
  height: 250px;
  width: 200px;
  animation: b3 7s infinite linear;
}
@keyframes b1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(100px, -100px) scale(1.3);
  }
}
@keyframes b2 {
  0%, 100% {
    transform: translate(0, 0) scale(1.2);
  }
  50% {
    transform: translate(-120px, 120px) scale(1);
  }
}
@keyframes b3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-150px, -100px) scale(1.4);
  }
}
.hero h1 {
  margin: 0;
  font: 400 1.15em/1.6 var(--font-sans);
  text-align: center;
}
@media (max-width:1000px) {
  .hero,.content {max-width:90%}
  .hero {padding:1.5em 1.5em 280px}
  .content {padding:0 1.5em 3em}
  footer {padding:0.75em 1.5em 0}
}
@media (max-width:600px) {
  body {font-size:15px}
  .hero {padding:1.25em 1.25em 220px}
  .hero h1 {font-size:1.1em}
  .content {padding:0 1.25em 4em}
  .content p {margin-bottom:2em}
  footer {padding:0.75em 1.25em}
  footer p {font-size:0.8em}
}
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after {animation-duration:0.01ms!important;animation-iteration-count:1!important}
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('/assets/fonts/serif.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter.woff2') format('woff2');
  font-display: swap;
}
