:root {
  /* Fonts */
  --default-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

/* Pre-flight */
*,
::after,
::before,
::backdrop,
::file-selector-button {
  margin: 0;
  padding: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* Page styles */
html {
  font-family: var(--default-font-family)
}

.page-body {
  @media (prefers-color-scheme: dark) {
    background-color: black;
    color: white;
  }
}

.page-layout {
  min-height: 100vh;
  max-width: 100%;
  max-height: 100%;

  margin: auto;

  display: flex;
  flex-direction: column;
}

.page-content {
  text-align: center;

  margin: 0 auto auto auto;
  padding: 0 2.5rem;

  max-width: 36rem;

  @media (width >= 80rem) {
    max-width: none;
  }
}

.logo {
  padding: 10px;
  margin: auto auto 0 auto;

  max-width: 20rem;
  @media (width >= 64rem) {
    max-width: 24rem;
  }
  @media (width >= 80rem) {
    max-width: 28rem;
  }

  @media (prefers-color-scheme: dark) {
    filter: invert(100%);
  }
}

.page-content h1 {
  font-weight: bold;
  font-size: xx-large;

  margin-bottom: 2.5rem;
}

.page-content p {
  font-size: x-large;
}
