@font-face {
  font-family: "Untitled Sans";
  font-display: block;
  font-style: normal;
  font-weight: 400;
  src: url("fonts/untitled-sans-regular.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: "Untitled Sans", -apple-system, BlinkMacSystemFont, "Avenir Next",
    Avenir, "Segoe UI", "Helvetica Neue", "Adwaita Sans", Cantarell, Ubuntu,
    Roboto, Noto, Helvetica, Arial, sans-serif;
  font-feature-settings: normal;
  font-optical-sizing: auto;
  font-variation-settings: normal;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100%;
  margin: 0;
}

body ::selection {
  color: #000;
  background: rgb(0 0 0 / 10%);
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: 0.875rem 1rem;
  color: #D6D6D6;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  line-height: 1.15;

  @media (min-width: 640px) {
    padding: 1.25rem 1.5rem;
  }

  @media (min-width: 768px) {
    font-size: 2.5rem;
  }
}

.description {
  max-width: 55rem;
  text-wrap: pretty;
}

h1 {
  display: inline;
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;

  &:hover {
    color: var(--hover-color, #0000ff);
  }
}

.multi-link {
  cursor: help;
}

.old-site {
  margin-top: auto;
}

.hide-until-md {
  display: none;

  @media (min-width: 768px) {
    display: inline;
  }
}

.hide-until-lg {
  display: none;

  @media (min-width: 1024px) {
    display: inline;
  }
}
