@import url("https://use.typekit.net/nge1jch.css");
body {
  background-color: #e6e6e6;
  color: #171717;
  font-family: "urw-din-condensed", sans-serif;
  padding: 50px;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "urw-din-condensed", sans-serif;
  font-weight: normal;
}
picture.logo {
  display: block;
  width: 50vmin;
  height: auto;
}
.legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 10rem 0 3rem;
  font-size: 0.8em;
}
h1 {
  display: none;
}
a {
  color: #171717;
  text-decoration: none;
}
a:focus,
a:hover,
a:active {
  color: #4a4a4a;
  text-decoration: underline;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #171717;
    color: #e6e6e6;
  }
  a {
    color: #e6e6e6;
  }
  a:focus,
  a:hover,
  a:active {
    color: #b3b3b3;
  }
}