:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1;
  /* fix for Chrome */
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
  }
}

@media (prefers-color-scheme: light) {
  :root {
    --background: #ececec;
    --color: #353535;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #120F2D;
    --color: #ececec;
  }
}

html, body {
  display: flex;
  flex-direction: column;
  width: 100dvw;
  height: 100dvh;
  line-height: 1.5;
  justify-content: center;
  align-items: center;
  color: var(--color);
  background-color: var(--background);
}

main {
  text-align: center;
  flex-grow: 1;
}

h1 {
  color: #cfcfcf;
  text-align: center;
}

h1 svg {
  width: 100%;
  max-width: 800px;
}

h1 svg path {
  fill: rgb(53, 53, 53);
}

@media (prefers-color-scheme: dark) {
  h1 svg path {
    fill: rgb(66, 31, 135);
  }
}

p {

}

p strong {
  font-weight: 550;
}

p a {
  color: rgb(66, 31, 135);
}

@media (prefers-color-scheme: dark) {
    p a {
      color: #fff;
    }
  }

footer {
  color: #353535aa;
  padding: 1rem 0;
  font-size: calc(1rem * calc(14/16));
  text-align: center;
}

@media (prefers-color-scheme: dark) {
  footer {
    color: #ffffffaa;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}