@layer base {

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

  body {
    width: 100%;
    background-color: var(--color-base);
    color: var(--color-base);
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  a {
    color: var(--color-base);
    text-decoration: none;
  }

  a:focus:not(:focus-visible) {
    outline: none;
  }

  img {
    display: block;
    width: 100%;
    height: auto;
  }

  .sr-only {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}
