/* Base */
@layer base {
  /* Document scale */
  html {
    font-size: var(--root-font-size);
  }

  @media (min-width: 600px) {
    html {
      font-size: var(--root-font-size-tablet);
    }
  }

  @media (min-width: 1024px) {
    html {
      font-size: var(--root-font-size-desktop);
    }
  }

  /* Typography & elements */
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: "DM Sans", sans-serif;
    font-size: 1.125rem;
    background: var(--color-bg-light);
    overflow-x: hidden;
    line-height: 1;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-weight: 500;
  }

  a {
    text-decoration: none;
  }

  button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
  }
}
