@layer base {

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    width: 100%;
    background-color: var(--color-white);
    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;
  }

  img {
    display: block;
    width: 100%;
    height: auto;
  }
}
