* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  min-width: 320px;
  max-width: 100%;
  background: var(--theme-html-background);
  color: var(--color-ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--theme-body-background);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--color-gold-500);
  outline-offset: 3px;
}

.site-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
